mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-06 11:00:54 +01:00
Fix undefined/status redirect
This commit is contained in:
parent
568ed24662
commit
c74d96052b
1 changed files with 2 additions and 2 deletions
|
@ -163,7 +163,7 @@ const statusRequest = async (
|
||||||
return new Response(null, {
|
return new Response(null, {
|
||||||
status: 302,
|
status: 302,
|
||||||
headers: {
|
headers: {
|
||||||
'Location': `${baseUrl}/${handle}/status/${id}`,
|
'Location': `${baseUrl}/${handle || 'i'}/status/${id}`,
|
||||||
...(cacheControl ? { 'cache-control': cacheControl } : {})
|
...(cacheControl ? { 'cache-control': cacheControl } : {})
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -202,7 +202,7 @@ const statusRequest = async (
|
||||||
return new Response(null, {
|
return new Response(null, {
|
||||||
status: 302,
|
status: 302,
|
||||||
headers: {
|
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 } : {})
|
...(cacheControl ? { 'cache-control': cacheControl } : {})
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Reference in a new issue