commit 26d77ac3430d169010cb76b33ef324ec22ddfc46
parent 4b4ebfba34811416347cdf691c420a62472e4102
Author: Florian Dold <florian@dold.me>
Date: Sat, 18 Jul 2026 19:29:34 +0200
add missing choiceIndex in pay transaction details
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/packages/taler-wallet-core/src/pay-merchant.ts b/packages/taler-wallet-core/src/pay-merchant.ts
@@ -406,6 +406,7 @@ export class PayMerchantTransactionContext implements TransactionContext {
refundQueryActive:
purchaseRec.purchaseStatus === PurchaseStatus.PendingQueryingRefund,
...(payRetryRec?.lastError ? { error: payRetryRec.lastError } : {}),
+ choiceIndex: purchaseRec.choiceIndex,
};
}