diff --git a/src/api/status.ts b/src/api/status.ts index e71e1e5..d554f1b 100644 --- a/src/api/status.ts +++ b/src/api/status.ts @@ -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 { diff --git a/src/types/twitterTypes.d.ts b/src/types/twitterTypes.d.ts index 2a79da7..2086021 100644 --- a/src/types/twitterTypes.d.ts +++ b/src/types/twitterTypes.d.ts @@ -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; diff --git a/src/types/types.d.ts b/src/types/types.d.ts index 4ba1ffa..476e3bd 100644 --- a/src/types/types.d.ts +++ b/src/types/types.d.ts @@ -144,6 +144,8 @@ interface APITweet { }; lang: string | null; + possibly_sensitive: boolean; + replying_to: string | null; replying_to_status: string | null;