Fix undefined/status redirect

This commit is contained in:
dangered wolf 2023-08-22 15:58:41 -04:00
parent 568ed24662
commit c74d96052b
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -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 } : {})
}
});