From abda7366211a0edfe989325fb091850f9f89fc20 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=A6=8C=EA=A6=AB=EA=A6=B6=EA=A6=8F=EA=A7=80=EA=A6=A6?= =?UTF-8?q?=EA=A6=BF=EA=A6=A7=EA=A6=AE=EA=A6=91=EA=A6=A9=EA=A6=AD=EA=A7=80?= Date: Tue, 20 Sep 2022 17:19:59 +0800 Subject: Expects the index to not need app URL any more --- shopify.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/shopify.c b/shopify.c index d25c977..d28d08d 100644 --- a/shopify.c +++ b/shopify.c @@ -355,10 +355,10 @@ static enum MHD_Result handle_request(void *cls, struct MHD_Connection *con, char html[sb.st_size + 1]; read(fd, html, sb.st_size); close(fd); - const size_t index_len = sb.st_size - strlen("%s") * 4 - + api_key_len + host_len + app_url_len * 2; + const size_t index_len = sb.st_size - strlen("%s") * 2 + + api_key_len + host_len; char index[index_len + 1]; - sprintf(index, html, api_key, host, app_url, app_url); + sprintf(index, html, api_key, host); res = MHD_create_response_from_buffer(index_len, index, MHD_RESPMEM_MUST_COPY); MHD_add_response_header(res, "Content-Security-Policy", -- cgit v1.2.3