mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 18:40:56 +01:00
Add possibly_sensitive flag to Tweet fetch API
Possible solution for #268
This commit is contained in:
parent
56bcec02b7
commit
94fb15523f
3 changed files with 5 additions and 0 deletions
|
@ -50,6 +50,8 @@ const populateTweetProperties = async (
|
|||
apiTweet.created_at = tweet.created_at;
|
||||
apiTweet.created_timestamp = new Date(tweet.created_at).getTime() / 1000;
|
||||
|
||||
apiTweet.possibly_sensitive = tweet.possibly_sensitive;
|
||||
|
||||
if (tweet.ext_views?.state === 'EnabledWithCount') {
|
||||
apiTweet.views = parseInt(tweet.ext_views.count || '0') ?? null;
|
||||
} else {
|
||||
|
|
1
src/types/twitterTypes.d.ts
vendored
1
src/types/twitterTypes.d.ts
vendored
|
@ -151,6 +151,7 @@ type TweetPartial = {
|
|||
in_reply_to_user_id_str?: string;
|
||||
id_str: string;
|
||||
lang: string;
|
||||
possibly_sensitive: boolean;
|
||||
possibly_sensitive_editable: boolean;
|
||||
retweet_count: number;
|
||||
quote_count: number;
|
||||
|
|
2
src/types/types.d.ts
vendored
2
src/types/types.d.ts
vendored
|
@ -144,6 +144,8 @@ interface APITweet {
|
|||
};
|
||||
|
||||
lang: string | null;
|
||||
possibly_sensitive: boolean;
|
||||
|
||||
replying_to: string | null;
|
||||
replying_to_status: string | null;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue