Add replying_to_status field

This commit is contained in:
Damien Erambert 2023-04-11 19:14:58 -07:00
parent bdd83d0659
commit c943c097fe
No known key found for this signature in database
2 changed files with 2 additions and 0 deletions

View file

@ -55,6 +55,7 @@ const populateTweetProperties = async (
}
apiTweet.replying_to = tweet.in_reply_to_screen_name || null;
apiTweet.replying_to_status = tweet.in_reply_to_status_id_str || null;
const mediaList = Array.from(
tweet.extended_entities?.media || tweet.entities?.media || []

View file

@ -134,6 +134,7 @@ interface APITweet {
lang: string | null;
replying_to: string | null;
replying_to_status: string | null;
source: string;