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
|
@ -33,7 +33,7 @@ const statusRequest = async (request: any, event: FetchEvent) => {
|
||||||
const cacheUrl = new URL(request.url);
|
const cacheUrl = new URL(request.url);
|
||||||
const cacheKey = new Request(cacheUrl.toString(), request);
|
const cacheKey = new Request(cacheUrl.toString(), request);
|
||||||
const cache = caches.default;
|
const cache = caches.default;
|
||||||
|
|
||||||
let response = await cache.match(cacheKey);
|
let response = await cache.match(cacheKey);
|
||||||
|
|
||||||
if (response) {
|
if (response) {
|
||||||
|
@ -43,10 +43,13 @@ const statusRequest = async (request: any, event: FetchEvent) => {
|
||||||
|
|
||||||
console.log('Cache miss');
|
console.log('Cache miss');
|
||||||
|
|
||||||
response = new Response(await handleStatus(id, parseInt(mediaNumber || 1), userAgent), {
|
response = new Response(
|
||||||
headers: Constants.RESPONSE_HEADERS,
|
await handleStatus(id, parseInt(mediaNumber || 1), userAgent),
|
||||||
status: 200
|
{
|
||||||
});
|
headers: Constants.RESPONSE_HEADERS,
|
||||||
|
status: 200
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
// Store the fetched response as cacheKey
|
// Store the fetched response as cacheKey
|
||||||
// Use waitUntil so you can return the response without blocking on
|
// 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()));
|
event.waitUntil(cache.put(cacheKey, response.clone()));
|
||||||
|
|
||||||
return response;
|
return response;
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
return Response.redirect(`${Constants.TWITTER_ROOT}${url.pathname}`, 302);
|
return Response.redirect(`${Constants.TWITTER_ROOT}${url.pathname}`, 302);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue