mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-04 18:10:56 +01:00
Log when Twitter denies guest token repeatedly
This commit is contained in:
parent
6ec1f4c36b
commit
9071a4725d
1 changed files with 3 additions and 1 deletions
|
@ -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 {};
|
||||
|
|
Loading…
Add table
Reference in a new issue