mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 18:40:56 +01:00
Fix url as well
This commit is contained in:
parent
a7867eac51
commit
c16e50d0e3
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ const populateTweetProperties = async (
|
||||||
const apiUser = convertToApiUser(graphQLUser);
|
const apiUser = convertToApiUser(graphQLUser);
|
||||||
|
|
||||||
/* Populating a lot of the basics */
|
/* Populating a lot of the basics */
|
||||||
apiTweet.url = `${Constants.TWITTER_ROOT}/${apiUser.screen_name}/status/${tweet.rest_id}`;
|
apiTweet.url = `${Constants.TWITTER_ROOT}/${apiUser.screen_name}/status/${tweet.rest_id ?? tweet.legacy.id_str}`;
|
||||||
apiTweet.id = tweet.rest_id ?? tweet.legacy.id_str;
|
apiTweet.id = tweet.rest_id ?? tweet.legacy.id_str;
|
||||||
apiTweet.text = unescapeText(linkFixer(tweet.legacy.entities?.urls, tweet.legacy.full_text || ''));
|
apiTweet.text = unescapeText(linkFixer(tweet.legacy.entities?.urls, tweet.legacy.full_text || ''));
|
||||||
apiTweet.author = {
|
apiTweet.author = {
|
||||||
|
|
Loading…
Add table
Reference in a new issue