taler-android

Android apps for GNU Taler (wallet, PoS, cashier)
Log | Files | Refs | README | LICENSE

commit e0d848d525f42c5319ca65235ac9b33fa14a3f68
parent 2d00a020f60d61fb79ce6f68c18e3414d90884b4
Author: Iván Ávalos <avalos@disroot.org>
Date:   Sat, 28 Feb 2026 21:40:18 +0100

[wallet] fix #11142 (duplicate payment service)

Diffstat:
Mwallet/src/main/java/net/taler/wallet/withdraw/WithdrawalShowInfo.kt | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/wallet/src/main/java/net/taler/wallet/withdraw/WithdrawalShowInfo.kt b/wallet/src/main/java/net/taler/wallet/withdraw/WithdrawalShowInfo.kt @@ -265,10 +265,10 @@ fun WithdrawalShowInfo( ) } - exchange?.let { + if (exchange != null && selectedAmount.scope !is ScopeInfo.Exchange) { TransactionInfoComposable( label = stringResource(R.string.withdraw_exchange), - info = cleanExchange(it), + info = cleanExchange(exchange), marquee = true, trailing = { if (devMode && possibleExchanges.size > 1) {