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

@ -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(
await handleStatus(id, parseInt(mediaNumber || 1), userAgent),
{
headers: Constants.RESPONSE_HEADERS, headers: Constants.RESPONSE_HEADERS,
status: 200 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);
} }