Fixed id not being set in tweet despite docs/types

This commit is contained in:
dangered wolf 2022-08-03 13:14:53 -04:00
parent beca5f30e7
commit 2ad7d43334
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -49,6 +49,7 @@ const populateTweetProperties = async (
const name = user?.name || ''; const name = user?.name || '';
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.text = linkFixer(tweet, tweet.full_text); apiTweet.text = linkFixer(tweet, tweet.full_text);
apiTweet.author = { apiTweet.author = {
name: name, name: name,