Fixed me breaking guest token error handling

This commit is contained in:
dangered wolf 2022-07-15 16:12:05 -04:00
parent 77e7cedbf9
commit 651d4d3176
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

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