commit 09d850881b71fe93f1bb1931c8199dc792f7c30b
parent 0c817c3ab94cd068af289c1f9f21718c4c23b30d
Author: Marc Stibane <marc@taler.net>
Date: Sun, 16 Aug 2026 08:22:10 +0200
comments (not only) for AI
Diffstat:
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/TalerWallet1/Model/Model+Deposit.swift b/TalerWallet1/Model/Model+Deposit.swift
@@ -250,6 +250,8 @@ struct BankAccountsInfo: Decodable, Hashable {
if let cyclos = payto.cyclos {
if cyclos.count > 1 {
+ // TODO: wallet-core should ensure that receivers are valid and don't have whitespace
+ // https://bugs.gnunet.org/view.php?id=11726
let receiver = payto.receiver?.replacingOccurrences(of: SPACE, with: "+") ?? DEMO
return String("payto://cyclos/\(cyclos)?receiver-name=\(receiver)")
}
diff --git a/TalerWallet1/Views/Settings/Bank/BankSectionView.swift b/TalerWallet1/Views/Settings/Bank/BankSectionView.swift
@@ -88,7 +88,7 @@ struct BankSectionView: View {
DepositAmountAction(stack: stack.push(),
selectedBalance: selectedBalance,
amountLastUsed: $amountLastUsed,
- paytoUri: account.payToWorkAround, // TODO: paytoUri,
+ paytoUri: account.payToWorkAround, // TODO: paytoUri, after https://bugs.gnunet.org/view.php?id=11726 is fixed
label: account.label)
.navigationTitle(navTitle)
}