diff --git a/src/api/status.ts b/src/api/status.ts index 83b23e3..515c0f4 100644 --- a/src/api/status.ts +++ b/src/api/status.ts @@ -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 || [] diff --git a/src/types/types.d.ts b/src/types/types.d.ts index f52b16d..855ade1 100644 --- a/src/types/types.d.ts +++ b/src/types/types.d.ts @@ -134,6 +134,7 @@ interface APITweet { lang: string | null; replying_to: string | null; + replying_to_status: string | null; source: string;