This commit is contained in:
dangered wolf 2023-04-08 14:02:16 -04:00
parent fbc5722c90
commit 9058326e0e
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58
2 changed files with 2 additions and 2 deletions

View file

@ -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,

View file

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