mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 10:30:55 +01:00
Fixed me breaking guest token error handling
This commit is contained in:
parent
77e7cedbf9
commit
651d4d3176
1 changed files with 2 additions and 5 deletions
|
@ -15,7 +15,7 @@ export const fetchUsingGuest = async (status: string): Promise<TimelineBlobParti
|
||||||
|
|
||||||
This can effectively mean virtually unlimited (read) access to Twitter's API,
|
This can effectively mean virtually unlimited (read) access to Twitter's API,
|
||||||
which is very funny. */
|
which is very funny. */
|
||||||
while (apiAttempts < 5) {
|
while (apiAttempts < 8) {
|
||||||
apiAttempts++;
|
apiAttempts++;
|
||||||
|
|
||||||
const activate = await fetch(
|
const activate = await fetch(
|
||||||
|
@ -65,10 +65,7 @@ export const fetchUsingGuest = async (status: string): Promise<TimelineBlobParti
|
||||||
)
|
)
|
||||||
).json()) as TimelineBlobPartial;
|
).json()) as TimelineBlobPartial;
|
||||||
|
|
||||||
if (
|
if (typeof conversation.globalObjects === 'undefined' || conversation.errors?.[0]?.code === 239) {
|
||||||
typeof conversation.globalObjects === 'undefined' &&
|
|
||||||
typeof conversation.errors === 'undefined'
|
|
||||||
) {
|
|
||||||
console.log('Failed to fetch conversation, got', conversation);
|
console.log('Failed to fetch conversation, got', conversation);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue