commit ef6fed10b06bef0ba7d9003b594c8e994665229f parent ac7d956ad8d233bf25698c2abbf55d9202dfdf67 Author: Jonathan Buchanan <jonathan.russ.buchanan@gmail.com> Date: Sun, 9 Aug 2020 21:29:33 -0400 ignore timeout in html requests to GET /orders/ Diffstat:
| M | src/backend/taler-merchant-httpd_get-orders-ID.c | | | 3 | ++- |
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/backend/taler-merchant-httpd_get-orders-ID.c b/src/backend/taler-merchant-httpd_get-orders-ID.c @@ -951,7 +951,8 @@ TMH_get_orders_ID (const struct TMH_RequestHandler *rh, long_poll_timeout_s = MHD_lookup_connection_value (connection, MHD_GET_ARGUMENT_KIND, "timeout"); - if (NULL != long_poll_timeout_s) + if ((NULL != long_poll_timeout_s) && + !god->generate_html) { unsigned int timeout;