From 2ad7d43334002766611a27d4afae791f90aa0243 Mon Sep 17 00:00:00 2001 From: dangered wolf Date: Wed, 3 Aug 2022 13:14:53 -0400 Subject: [PATCH] Fixed id not being set in tweet despite docs/types --- src/api.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/api.ts b/src/api.ts index 39292dc..8090ff5 100644 --- a/src/api.ts +++ b/src/api.ts @@ -49,6 +49,7 @@ const populateTweetProperties = async ( const name = user?.name || ''; apiTweet.url = `${Constants.TWITTER_ROOT}/${screenName}/status/${tweet.id_str}`; + apiTweet.id = tweet.id_str; apiTweet.text = linkFixer(tweet, tweet.full_text); apiTweet.author = { name: name,