mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 18:40:56 +01:00
Bugfixes
This commit is contained in:
parent
fbc5722c90
commit
9058326e0e
2 changed files with 2 additions and 2 deletions
|
@ -30,7 +30,7 @@ const populateTweetProperties = async (
|
||||||
/* Populating a lot of the basics */
|
/* Populating a lot of the basics */
|
||||||
apiTweet.url = `${Constants.TWITTER_ROOT}/${screenName}/status/${tweet.id_str}`;
|
apiTweet.url = `${Constants.TWITTER_ROOT}/${screenName}/status/${tweet.id_str}`;
|
||||||
apiTweet.id = 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 = {
|
apiTweet.author = {
|
||||||
name: name,
|
name: name,
|
||||||
screen_name: screenName,
|
screen_name: screenName,
|
||||||
|
|
|
@ -48,7 +48,7 @@ export const Constants = {
|
||||||
'Sec-Fetch-Mode': `cors`,
|
'Sec-Fetch-Mode': `cors`,
|
||||||
'Sec-Fetch-Dest': `empty`,
|
'Sec-Fetch-Dest': `empty`,
|
||||||
'Referer': `https://twitter.com/`,
|
'Referer': `https://twitter.com/`,
|
||||||
'Accept-Encoding': `gzip, deflate, br`,
|
'Accept-Encoding': `gzip, deflate`,
|
||||||
'Accept-Language': `en`
|
'Accept-Language': `en`
|
||||||
},
|
},
|
||||||
RESPONSE_HEADERS: {
|
RESPONSE_HEADERS: {
|
||||||
|
|
Loading…
Add table
Reference in a new issue