Fixed broken linkfixer

This commit is contained in:
dangered wolf 2022-08-13 02:19:18 -04:00
parent 8cd0ae1e7c
commit 5c4956032b
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -5,7 +5,7 @@ export const linkFixer = (tweet: TweetPartial, text: string): string => {
text = text.replace(url.url, url.expanded_url); text = text.replace(url.url, url.expanded_url);
}); });
text = text.replace(/ ?https:\/\/t\.co\/\w{10}/, ''); text = text.replace(/ ?https:\/\/t\.co\/\w{10}/g, '');
} }
return text; return text;