Use legacy.id_str when rest_id not available (fix #416)

This commit is contained in:
dangered wolf 2023-10-15 14:34:29 -04:00
parent 74ab257f86
commit a7867eac51
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58
2 changed files with 2 additions and 1 deletions

View file

@ -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,

View file

@ -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