From 9058326e0e077e3ffd77eba83207b6ac2b675952 Mon Sep 17 00:00:00 2001 From: dangered wolf Date: Sat, 8 Apr 2023 14:02:16 -0400 Subject: [PATCH] Bugfixes --- src/api/status.ts | 2 +- src/constants.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/api/status.ts b/src/api/status.ts index fa8e003..5821b63 100644 --- a/src/api/status.ts +++ b/src/api/status.ts @@ -30,7 +30,7 @@ const populateTweetProperties = async ( /* Populating a lot of the basics */ apiTweet.url = `${Constants.TWITTER_ROOT}/${screenName}/status/${tweet.id_str}`; apiTweet.id = tweet.id_str; - apiTweet.text = unescapeText(linkFixer(tweet, tweet.full_text)); + apiTweet.text = unescapeText(linkFixer(tweet, tweet.full_text || '')); apiTweet.author = { name: name, screen_name: screenName, diff --git a/src/constants.ts b/src/constants.ts index 5e89eb3..b21815d 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -48,7 +48,7 @@ export const Constants = { 'Sec-Fetch-Mode': `cors`, 'Sec-Fetch-Dest': `empty`, 'Referer': `https://twitter.com/`, - 'Accept-Encoding': `gzip, deflate, br`, + 'Accept-Encoding': `gzip, deflate`, 'Accept-Language': `en` }, RESPONSE_HEADERS: {