Fixed extraneous t.co urls

This commit is contained in:
dangered wolf 2023-08-17 02:15:31 -04:00
parent a80793a8ae
commit 7306302051
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -12,12 +12,12 @@ export const linkFixer = (tweet: GraphQLTweet, text: string): string => {
} }
text = text.replace(url.url, newURL); text = text.replace(url.url, newURL);
}); });
}
/* Remove any link with unavailable original. /* Remove any link with unavailable original.
This means that stuff like the t.co link to pic.twitter.com This means that stuff like the t.co link to pic.twitter.com
will get removed in image/video Tweets */ will get removed in image/video Tweets */
text = text.replace(/ ?https:\/\/t\.co\/\w{10}/g, ''); text = text.replace(/ ?https:\/\/t\.co\/\w{10}/g, '');
}
return text; return text;
}; };