mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 10:30:55 +01:00
Use legacy.id_str when rest_id not available (fix #416)
This commit is contained in:
parent
74ab257f86
commit
a7867eac51
2 changed files with 2 additions and 1 deletions
|
@ -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,
|
||||
|
|
1
src/types/twitterTypes.d.ts
vendored
1
src/types/twitterTypes.d.ts
vendored
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue