diff --git a/src/api/status.ts b/src/api/status.ts index 8f2d482..624b1e7 100644 --- a/src/api/status.ts +++ b/src/api/status.ts @@ -100,6 +100,13 @@ const populateTweetProperties = async ( } } + // Add Tweet source but remove the link HTML tag + if (tweet.source) { + apiTweet.source = tweet.source + .replace(/(.+?)<\/a>/, '$2') + } + + /* Populate a Twitter card */ if (tweet.card) { const card = await renderCard(tweet.card); diff --git a/src/types/types.d.ts b/src/types/types.d.ts index 0e70310..f52b16d 100644 --- a/src/types/types.d.ts +++ b/src/types/types.d.ts @@ -135,5 +135,7 @@ interface APITweet { lang: string | null; replying_to: string | null; + source: string; + twitter_card: 'tweet' | 'summary' | 'summary_large_image' | 'player'; }