From 7306302051920658fe5ef7f03c045fb898b1ee6e Mon Sep 17 00:00:00 2001 From: dangered wolf Date: Thu, 17 Aug 2023 02:15:31 -0400 Subject: [PATCH] Fixed extraneous t.co urls --- src/helpers/linkFixer.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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; };