mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 18:40:56 +01:00
Fixed extraneous t.co urls
This commit is contained in:
parent
a80793a8ae
commit
7306302051
1 changed files with 5 additions and 5 deletions
|
@ -12,12 +12,12 @@ export const linkFixer = (tweet: GraphQLTweet, text: string): string => {
|
||||||
}
|
}
|
||||||
text = text.replace(url.url, newURL);
|
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;
|
return text;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Reference in a new issue