mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 18:40:56 +01:00
Fixed broken linkfixer
This commit is contained in:
parent
8cd0ae1e7c
commit
5c4956032b
1 changed files with 1 additions and 1 deletions
|
@ -5,7 +5,7 @@ export const linkFixer = (tweet: TweetPartial, text: string): string => {
|
|||
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;
|
||||
|
|
Loading…
Add table
Reference in a new issue