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: {