From e80c25b81d5efb9e051e0468ef08f3dc5d84022f Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Mon, 22 May 2023 11:42:38 -0400 Subject: [PATCH] Attempt to fix response bug --- static/functions/_middleware.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/static/functions/_middleware.js b/static/functions/_middleware.js index f9c6a31..cf8540d 100644 --- a/static/functions/_middleware.js +++ b/static/functions/_middleware.js @@ -20,13 +20,13 @@ async function goat_counter_analytics(context) { ] }; + // Execute the rest of the request chain + let response = await context.next(); + // For debugging, allow the requester to expose the body through a response header if (url.searchParams.get('goat-counter-debug') == 'true') { - context.response.headers.set('X-GoatCounter-Payload', JSON.stringify(payload)); + response.headers.set('X-GoatCounter-Payload', JSON.stringify(payload)); } - - // Continue with the request - return await context.next(); } // Chaining