mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-06 11:00:54 +01:00
Merge pull request #228 from eramdam/main
Add `replying_to_status` field
This commit is contained in:
commit
71a2c23dc2
2 changed files with 2 additions and 0 deletions
|
@ -55,6 +55,7 @@ const populateTweetProperties = async (
|
||||||
}
|
}
|
||||||
|
|
||||||
apiTweet.replying_to = tweet.in_reply_to_screen_name || null;
|
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(
|
const mediaList = Array.from(
|
||||||
tweet.extended_entities?.media || tweet.entities?.media || []
|
tweet.extended_entities?.media || tweet.entities?.media || []
|
||||||
|
|
1
src/types/types.d.ts
vendored
1
src/types/types.d.ts
vendored
|
@ -134,6 +134,7 @@ interface APITweet {
|
||||||
|
|
||||||
lang: string | null;
|
lang: string | null;
|
||||||
replying_to: string | null;
|
replying_to: string | null;
|
||||||
|
replying_to_status: string | null;
|
||||||
|
|
||||||
source: string;
|
source: string;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue