mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 10:30:55 +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;
|
const cache = caches.default;
|
||||||
|
|
||||||
while (apiAttempts < 10) {
|
while (apiAttempts < 12) {
|
||||||
const csrfToken = crypto
|
const csrfToken = crypto
|
||||||
.randomUUID()
|
.randomUUID()
|
||||||
.replace(
|
.replace(
|
||||||
|
@ -163,6 +163,8 @@ export const fetchUsingGuest = async (
|
||||||
return conversation;
|
return conversation;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
console.log('Twitter has repeatedly denied our requests, so we give up now');
|
||||||
|
|
||||||
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
||||||
// @ts-expect-error - This is only returned if we completely failed to fetch the conversation
|
// @ts-expect-error - This is only returned if we completely failed to fetch the conversation
|
||||||
return {};
|
return {};
|
||||||
|
|
Loading…
Add table
Reference in a new issue