Formatting

This commit is contained in:
dangered wolf 2022-07-15 17:38:24 -04:00
parent 119e858d31
commit a83cb8ea68
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -57,7 +57,7 @@ export const fetchUsingGuest = async (status: string): Promise<TimelineBlobParti
so we use twitter.com/i/api/2 instead of api.twitter.com/2 */ so we use twitter.com/i/api/2 instead of api.twitter.com/2 */
let conversation: TimelineBlobPartial; let conversation: TimelineBlobPartial;
let apiRequest; let apiRequest;
try { try {
apiRequest = await fetch( apiRequest = await fetch(
`${Constants.TWITTER_ROOT}/i/api/2/timeline/conversation/${status}.json?${Constants.GUEST_FETCH_PARAMETERS}`, `${Constants.TWITTER_ROOT}/i/api/2/timeline/conversation/${status}.json?${Constants.GUEST_FETCH_PARAMETERS}`,
@ -65,9 +65,9 @@ export const fetchUsingGuest = async (status: string): Promise<TimelineBlobParti
method: 'GET', method: 'GET',
headers: headers headers: headers
} }
) );
conversation = (await apiRequest.json()); conversation = await apiRequest.json();
} catch(e: any) { } catch (e: any) {
/* We'll usually only hit this if we get an invalid response from Twitter. /* We'll usually only hit this if we get an invalid response from Twitter.
It's rare, but it happens */ It's rare, but it happens */
console.error('Unknown error while fetching conversation from API'); console.error('Unknown error while fetching conversation from API');