From 9fe1a2e3c3c7e0f70145cb591ce440fca1f0a07d Mon Sep 17 00:00:00 2001 From: dangered wolf Date: Sun, 28 Aug 2022 15:26:31 -0400 Subject: [PATCH] Bugfix, prettier --- src/fetch.ts | 13 +++++++++---- src/status.ts | 9 +++++---- 2 files changed, 14 insertions(+), 8 deletions(-) diff --git a/src/fetch.ts b/src/fetch.ts index 2a41d77..383c7fa 100644 --- a/src/fetch.ts +++ b/src/fetch.ts @@ -125,7 +125,10 @@ export const fetchUsingGuest = async ( /* We'll usually only hit this if we get an invalid response from Twitter. It's uncommon, but it happens */ console.error('Unknown error while fetching conversation from API'); - event && event.waitUntil(cache.delete(guestTokenRequestCacheDummy.clone(), { ignoreMethod: true })); + event && + event.waitUntil( + cache.delete(guestTokenRequestCacheDummy.clone(), { ignoreMethod: true }) + ); newTokenGenerated = true; continue; } @@ -137,14 +140,16 @@ export const fetchUsingGuest = async ( /* Running out of requests within our rate limit, let's purge the cache */ if (remainingRateLimit < 20) { console.log(`Purging token on this edge due to low rate limit remaining`); - event && event.waitUntil(cache.delete(guestTokenRequestCacheDummy.clone(), { ignoreMethod: true })); + event && + event.waitUntil( + cache.delete(guestTokenRequestCacheDummy.clone(), { ignoreMethod: true }) + ); } if ( typeof conversation.globalObjects === 'undefined' && (typeof conversation.errors === 'undefined' || - conversation.errors?.[0]?.code === - 239) /* Error 239 = Bad guest token */ + conversation.errors?.[0]?.code === 239) /* Error 239 = Bad guest token */ ) { console.log('Failed to fetch conversation, got', conversation); newTokenGenerated = true; diff --git a/src/status.ts b/src/status.ts index c1f178a..a0d27e6 100644 --- a/src/status.ts +++ b/src/status.ts @@ -186,15 +186,16 @@ export const handleStatus = async ( /* This Tweet has one or more photos to render */ if (tweet.media?.photos) { const { photos } = tweet.media; - let photo = photos[(mediaNumber || 1) - 1]; + let photo: APIPhoto | APIMosaicPhoto = photos[(mediaNumber || 1) - 1]; /* If there isn't a specified media number and we have a mosaic response, we'll render it using mosaic */ if (typeof mediaNumber !== 'number' && tweet.media.mosaic) { photo = { + /* Include dummy height/width for TypeScript reasons. We have a check to make sure we don't use these later. */ + height: 0, + width: 0, url: tweet.media.mosaic.formats.jpeg, - width: tweet.media.mosaic.width, - height: tweet.media.mosaic.height, type: 'photo' }; /* If mosaic isn't available or the link calls for a specific photo, @@ -220,7 +221,7 @@ export const handleStatus = async ( /* Push the raw photo-related headers */ headers.push( ``, - ``, + `` ); if (!tweet.media.mosaic) {