mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 02:20:54 +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,
|
||||
which is very funny. */
|
||||
while (apiAttempts < 5) {
|
||||
while (apiAttempts < 8) {
|
||||
apiAttempts++;
|
||||
|
||||
const activate = await fetch(
|
||||
|
@ -65,10 +65,7 @@ export const fetchUsingGuest = async (status: string): Promise<TimelineBlobParti
|
|||
)
|
||||
).json()) as TimelineBlobPartial;
|
||||
|
||||
if (
|
||||
typeof conversation.globalObjects === 'undefined' &&
|
||||
typeof conversation.errors === 'undefined'
|
||||
) {
|
||||
if (typeof conversation.globalObjects === 'undefined' || conversation.errors?.[0]?.code === 239) {
|
||||
console.log('Failed to fetch conversation, got', conversation);
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue