From c74d96052bf0000d9f57b3b7ccfce97e15c67cbe Mon Sep 17 00:00:00 2001 From: dangered wolf Date: Tue, 22 Aug 2023 15:58:41 -0400 Subject: [PATCH] Fix undefined/status redirect --- src/server.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/server.ts b/src/server.ts index ea51a47..4e94eb5 100644 --- a/src/server.ts +++ b/src/server.ts @@ -163,7 +163,7 @@ const statusRequest = async ( return new Response(null, { status: 302, headers: { - 'Location': `${baseUrl}/${handle}/status/${id}`, + 'Location': `${baseUrl}/${handle || 'i'}/status/${id}`, ...(cacheControl ? { 'cache-control': cacheControl } : {}) } }); @@ -202,7 +202,7 @@ const statusRequest = async ( return new Response(null, { status: 302, headers: { - 'Location': `${baseUrl}/${handle}/status/${id?.match(/\d{2,20}/)?.[0]}`, + 'Location': `${baseUrl}/${handle || 'i'}/status/${id?.match(/\d{2,20}/)?.[0]}`, ...(cacheControl ? { 'cache-control': cacheControl } : {}) } });