Merge pull request #228 from eramdam/main

Add `replying_to_status` field
This commit is contained in:
dangered wolf 2023-04-12 02:01:47 -04:00 committed by GitHub
commit 71a2c23dc2
Signed by: DevComp
GPG key ID: 4AEE18F83AFDEB23
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;