mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 10:30:55 +01:00
Forgot to run prettier
This commit is contained in:
parent
0d5ec73129
commit
d1db155935
1 changed files with 8 additions and 6 deletions
|
@ -43,10 +43,13 @@ const statusRequest = async (request: any, event: FetchEvent) => {
|
|||
|
||||
console.log('Cache miss');
|
||||
|
||||
response = new Response(await handleStatus(id, parseInt(mediaNumber || 1), userAgent), {
|
||||
response = new Response(
|
||||
await handleStatus(id, parseInt(mediaNumber || 1), userAgent),
|
||||
{
|
||||
headers: Constants.RESPONSE_HEADERS,
|
||||
status: 200
|
||||
});
|
||||
}
|
||||
);
|
||||
|
||||
// Store the fetched response as cacheKey
|
||||
// Use waitUntil so you can return the response without blocking on
|
||||
|
@ -54,7 +57,6 @@ const statusRequest = async (request: any, event: FetchEvent) => {
|
|||
event.waitUntil(cache.put(cacheKey, response.clone()));
|
||||
|
||||
return response;
|
||||
|
||||
} else {
|
||||
return Response.redirect(`${Constants.TWITTER_ROOT}${url.pathname}`, 302);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue