From a7867eac51cfe286fa4d53ef498a07b28b336fca Mon Sep 17 00:00:00 2001 From: dangered wolf Date: Sun, 15 Oct 2023 14:34:29 -0400 Subject: [PATCH] Use legacy.id_str when rest_id not available (fix #416) --- src/api/status.ts | 2 +- src/types/twitterTypes.d.ts | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/api/status.ts b/src/api/status.ts index 6979d8c..faef8ae 100644 --- a/src/api/status.ts +++ b/src/api/status.ts @@ -46,7 +46,7 @@ const populateTweetProperties = async ( /* Populating a lot of the basics */ apiTweet.url = `${Constants.TWITTER_ROOT}/${apiUser.screen_name}/status/${tweet.rest_id}`; - apiTweet.id = tweet.rest_id; + apiTweet.id = tweet.rest_id ?? tweet.legacy.id_str; apiTweet.text = unescapeText(linkFixer(tweet.legacy.entities?.urls, tweet.legacy.full_text || '')); apiTweet.author = { id: apiUser.id, diff --git a/src/types/twitterTypes.d.ts b/src/types/twitterTypes.d.ts index 394ff1a..35bce9b 100644 --- a/src/types/twitterTypes.d.ts +++ b/src/types/twitterTypes.d.ts @@ -309,6 +309,7 @@ type GraphQLUser = { }; type GraphQLTweetLegacy = { + id_str: string; // "1674824189176590336" created_at: string; // "Tue Sep 14 20:00:00 +0000 2021" conversation_id_str: string; // "1674824189176590336" bookmark_count: number; // 0