Remove extraneous /i/web/status

This commit is contained in:
dangered wolf 2023-05-31 17:00:30 -04:00
parent 96743ed478
commit 372c7cf76b
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -2,7 +2,12 @@
export const linkFixer = (tweet: TweetPartial, text: string): string => {
if (typeof tweet.entities?.urls !== 'undefined') {
tweet.entities?.urls.forEach((url: TcoExpansion) => {
text = text.replace(url.url, url.expanded_url);
let newURL = url.expanded_url;
if (newURL.match(/^https:\/\/twitter\.com\/i\/web\/status\/\w+/g) !== null) {
newURL = '';
}
text = text.replace(url.url, newURL);
});
/* Remove any link with unavailable original.