From 374eb9158e1f2872c6b59d01fc2466e2bb9255f0 Mon Sep 17 00:00:00 2001 From: ThaUnknown <6506529+ThaUnknown@users.noreply.github.com> Date: Tue, 26 Dec 2023 15:00:01 +0100 Subject: [PATCH] fix: functions redirect --- functions/anime/[id].js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/anime/[id].js b/functions/anime/[id].js index 96ccd1c..1073d88 100644 --- a/functions/anime/[id].js +++ b/functions/anime/[id].js @@ -5,7 +5,7 @@ export function onRequest ({ params }) { try { const id = Number(params.id) if (Number.isSafeInteger(id)) { - const html = /* html */`Redirecting...` + const html = /* html */`Redirecting...` return new Response(html, { headers: {