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