mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 18:40:56 +01:00
Add Tweet source to API
This commit is contained in:
parent
f34d4ae8e0
commit
0de89d7f08
2 changed files with 9 additions and 0 deletions
|
@ -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 */
|
/* Populate a Twitter card */
|
||||||
if (tweet.card) {
|
if (tweet.card) {
|
||||||
const card = await renderCard(tweet.card);
|
const card = await renderCard(tweet.card);
|
||||||
|
|
2
src/types/types.d.ts
vendored
2
src/types/types.d.ts
vendored
|
@ -135,5 +135,7 @@ interface APITweet {
|
||||||
lang: string | null;
|
lang: string | null;
|
||||||
replying_to: string | null;
|
replying_to: string | null;
|
||||||
|
|
||||||
|
source: string;
|
||||||
|
|
||||||
twitter_card: 'tweet' | 'summary' | 'summary_large_image' | 'player';
|
twitter_card: 'tweet' | 'summary' | 'summary_large_image' | 'player';
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue