taler-typescript-core

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

commit 26ca131778b7032699e95a0fa91af1fe05638db3
parent 7ca9d30b4cec1e86956a2cec97dce0dcb67c36f2
Author: Florian Dold <florian@dold.me>
Date:   Thu, 19 Sep 2024 12:10:44 +0200

wallet-core: remove special characters from wire transfer subject

Some banks don't like it, we shall only use ASCII letters and numbers from now on.

Diffstat:
Mpackages/taler-wallet-core/src/withdraw.ts | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/packages/taler-wallet-core/src/withdraw.ts b/packages/taler-wallet-core/src/withdraw.ts @@ -3750,7 +3750,7 @@ async function fetchAccount( }); if (reservePub != null) { paytoUri = addPaytoQueryParams(paytoUri, { - message: `Taler-> ${reservePub}`, + message: `Taler ${reservePub}`, }); } const acctInfo: WithdrawalExchangeAccountDetails = {