exchange

Base system with REST service to issue digital coins, run by the payment service provider
Log | Files | Refs | Submodules | README | LICENSE

commit 4114ac6d31d30a430e0ec7f3a8737e18e582e196
parent 72fa89407aa96537f4eeb00642b0da5a2fff8492
Author: Christian Grothoff <christian@grothoff.org>
Date:   Sun,  4 May 2025 09:13:56 +0200

fix #9850

Diffstat:
Msrc/util/payto.c | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/util/payto.c b/src/util/payto.c @@ -49,11 +49,11 @@ TALER_payto_is_wallet (const char *payto_uri) { return (0 == strncasecmp (payto_uri, - "taler://taler-reserve/", - strlen ("taler://taler-reserve/"))) || + "payto://taler-reserve/", + strlen ("payto://taler-reserve/"))) || (0 == strncasecmp (payto_uri, - "taler://taler-reserve-http/", - strlen ("taler://taler-reserve-http/"))); + "payto://taler-reserve-http/", + strlen ("payto://taler-reserve-http/"))); }