Forgot to run prettier

This commit is contained in:
dangered wolf 2022-07-14 20:38:19 -04:00
parent 0d5ec73129
commit d1db155935
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

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