Add Tweet source to API

This commit is contained in:
dangered wolf 2023-04-06 23:49:24 -04:00
parent f34d4ae8e0
commit 0de89d7f08
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58
2 changed files with 9 additions and 0 deletions

View file

@ -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 href="(.+?)" rel="nofollow">(.+?)<\/a>/, '$2')
}
/* Populate a Twitter card */
if (tweet.card) {
const card = await renderCard(tweet.card);

View file

@ -135,5 +135,7 @@ interface APITweet {
lang: string | null;
replying_to: string | null;
source: string;
twitter_card: 'tweet' | 'summary' | 'summary_large_image' | 'player';
}