mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 02:20:54 +01:00
Fixed error handling (again)
This commit is contained in:
parent
651d4d3176
commit
5307bfc1a4
1 changed files with 5 additions and 1 deletions
|
@ -65,7 +65,11 @@ export const fetchUsingGuest = async (status: string): Promise<TimelineBlobParti
|
|||
)
|
||||
).json()) as TimelineBlobPartial;
|
||||
|
||||
if (typeof conversation.globalObjects === 'undefined' || conversation.errors?.[0]?.code === 239) {
|
||||
if (
|
||||
typeof conversation.globalObjects === 'undefined' &&
|
||||
(typeof conversation.errors === 'undefined' ||
|
||||
conversation.errors?.[0]?.code === 239)
|
||||
) {
|
||||
console.log('Failed to fetch conversation, got', conversation);
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue