merchant

Merchant backend to process payments, run by merchants
Log | Files | Refs | Submodules | README | LICENSE

commit ff72f53157a9d2f1e4690b668781b85c4c46ae42
parent 13b4433128d09390863efc751cf73765fa2c3ca6
Author: Christian Grothoff <christian@grothoff.org>
Date:   Mon, 29 Jan 2024 22:41:12 +0100

-fix escape

Diffstat:
Msrc/backenddb/pg_lookup_account.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/backenddb/pg_lookup_account.c b/src/backenddb/pg_lookup_account.c @@ -49,8 +49,8 @@ TMH_PG_lookup_account (void *cls, "SELECT" " account_serial" " FROM merchant_accounts" - " WHERE REGEXP_REPLACE(payto_uri,'\?.*','')" - " =REGEXP_REPLACE($2,'\?.*','')" + " WHERE REGEXP_REPLACE(payto_uri,'\\?.*','')" + " =REGEXP_REPLACE($2,'\\?.*','')" " AND merchant_serial=" " (SELECT merchant_serial" " FROM merchant_instances"