commit 47d7793fb83f8c2f6d68b1397cea2a1fd56e6a43
parent 4f8b3cf90826b2f0c44c0dfdf18232cfd8893cdc
Author: Christian Grothoff <christian@grothoff.org>
Date: Fri, 5 Dec 2025 11:28:32 +0100
fix #10636
Diffstat:
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/src/backend/taler-merchant-httpd_private-post-orders.c b/src/backend/taler-merchant-httpd_private-post-orders.c
@@ -78,7 +78,7 @@
* refuses a forced download.
*/
#define MAX_KEYS_WAIT \
- GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MILLISECONDS, 2500)
+ GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MILLISECONDS, 2500)
/**
* Generate the base URL for the given merchant instance.
@@ -4331,6 +4331,8 @@ phase_parse_request (struct OrderContext *oc)
};
enum GNUNET_GenericReturnValue ret;
+ oc->parse_request.refund_delay
+ = oc->hc->instance->settings.default_refund_delay;
ret = TALER_MHD_parse_json_data (oc->connection,
oc->hc->request_body,
spec);