taler-typescript-core

Wallet core logic and WebUIs for various components
Log | Files | Refs | Submodules | README | LICENSE

commit 9a149002df48f1e026d109abfc4b5715d98b913d
parent e2cee7a88fb22824eddab146aa462d9dd2dacea6
Author: Sebastian <sebasjm@taler-systems.com>
Date:   Fri,  5 Dec 2025 11:19:16 -0300

fix #10733

Diffstat:
Mpackages/taler-util/src/types-taler-merchant.ts | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/packages/taler-util/src/types-taler-merchant.ts b/packages/taler-util/src/types-taler-merchant.ts @@ -4069,7 +4069,7 @@ export const codecForPaymentResponse = (): Codec<PaymentResponse> => export const codecForPaymentDeniedLegallyResponse = (): Codec<PaymentDeniedLegallyResponse> => buildCodecForObject<PaymentDeniedLegallyResponse>() - .property("exchange_base_urls", codecForList(codecForString())) + .property("exchange_base_urls", codecOptionalDefault(codecForList(codecForString()),[])) .build("TalerMerchantApi.PaymentDeniedLegallyResponse"); export const codecForStatusPaid = (): Codec<StatusPaid> =>