Log when Twitter denies guest token repeatedly

This commit is contained in:
dangered wolf 2022-08-25 03:36:02 -04:00
parent 6ec1f4c36b
commit 9071a4725d
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

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