mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 10:30:55 +01:00
12 lines
382 B
TypeScript
12 lines
382 B
TypeScript
export const linkFixer = (tweet: TweetPartial, text: string): string => {
|
|
// Replace t.co links with their full counterparts
|
|
if (typeof tweet.entities?.urls !== 'undefined') {
|
|
tweet.entities?.urls.forEach((url: TcoExpansion) => {
|
|
text = text.replace(url.url, url.expanded_url);
|
|
});
|
|
|
|
text = text.replace(/ ?https:\/\/t\.co\/\w{10}/, '');
|
|
}
|
|
|
|
return text;
|
|
};
|