Fix url as well

This commit is contained in:
dangered wolf 2023-10-15 14:35:37 -04:00
parent a7867eac51
commit c16e50d0e3
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -45,7 +45,7 @@ const populateTweetProperties = async (
const apiUser = convertToApiUser(graphQLUser);
/* 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.text = unescapeText(linkFixer(tweet.legacy.entities?.urls, tweet.legacy.full_text || ''));
apiTweet.author = {