Add possibly_sensitive flag to Tweet fetch API

Possible solution for #268
This commit is contained in:
dangered wolf 2023-05-14 18:29:31 -04:00
parent 56bcec02b7
commit 94fb15523f
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58
3 changed files with 5 additions and 0 deletions

View file

@ -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 {

View file

@ -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;

View file

@ -144,6 +144,8 @@ interface APITweet {
};
lang: string | null;
possibly_sensitive: boolean;
replying_to: string | null;
replying_to_status: string | null;