From 9071a4725d9497bd6d84e035f1bf66f2451cb6d9 Mon Sep 17 00:00:00 2001 From: dangered wolf Date: Thu, 25 Aug 2022 03:36:02 -0400 Subject: [PATCH] Log when Twitter denies guest token repeatedly --- src/fetch.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/fetch.ts b/src/fetch.ts index ba61c58..c1561a6 100644 --- a/src/fetch.ts +++ b/src/fetch.ts @@ -40,7 +40,7 @@ export const fetchUsingGuest = async ( const cache = caches.default; - while (apiAttempts < 10) { + while (apiAttempts < 12) { const csrfToken = crypto .randomUUID() .replace( @@ -163,6 +163,8 @@ export const fetchUsingGuest = async ( return conversation; } + console.log('Twitter has repeatedly denied our requests, so we give up now'); + // eslint-disable-next-line @typescript-eslint/ban-ts-comment // @ts-expect-error - This is only returned if we completely failed to fetch the conversation return {};