From 9b1ec69810422b9760c9eaa257fe37ca31da44c0 Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Tue, 16 Jan 2024 11:26:33 -0500 Subject: [PATCH] Go back to a real redirect --- static/functions/_middleware.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/functions/_middleware.js b/static/functions/_middleware.js index 0b092aa..9673bc8 100644 --- a/static/functions/_middleware.js +++ b/static/functions/_middleware.js @@ -14,7 +14,7 @@ async function handle_keys_request(context) { } // Transparent redirect - return fetch(url); + return Response.redirect(url, 302); } // Otherwise, continue the request chain