mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 10:30:55 +01:00
Handle invalid API responses better
This commit is contained in:
parent
e7308ed55d
commit
f7a4203003
1 changed files with 12 additions and 3 deletions
15
src/fetch.ts
15
src/fetch.ts
|
@ -55,15 +55,24 @@ export const fetchUsingGuest = async (status: string): Promise<TimelineBlobParti
|
|||
|
||||
/* We pretend to be the Twitter Web App as closely as possible,
|
||||
so we use twitter.com/i/api/2 instead of api.twitter.com/2 */
|
||||
const conversation = (await (
|
||||
await fetch(
|
||||
let conversation: TimelineBlobPartial;
|
||||
let apiRequest;
|
||||
|
||||
try {
|
||||
apiRequest = await fetch(
|
||||
`${Constants.TWITTER_ROOT}/i/api/2/timeline/conversation/${status}.json?${Constants.GUEST_FETCH_PARAMETERS}`,
|
||||
{
|
||||
method: 'GET',
|
||||
headers: headers
|
||||
}
|
||||
)
|
||||
).json()) as TimelineBlobPartial;
|
||||
conversation = (await apiRequest.json());
|
||||
} catch(e: any) {
|
||||
/* We'll usually only hit this if we get an invalid response from Twitter.
|
||||
It's rare, but it happens */
|
||||
console.error('Unknown error while fetching conversation from API');
|
||||
continue;
|
||||
}
|
||||
|
||||
if (
|
||||
typeof conversation.globalObjects === 'undefined' &&
|
||||
|
|
Loading…
Add table
Reference in a new issue