mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-06 19:10:54 +01:00
Remove extraneous /i/web/status
This commit is contained in:
parent
96743ed478
commit
372c7cf76b
1 changed files with 6 additions and 1 deletions
|
@ -2,7 +2,12 @@
|
||||||
export const linkFixer = (tweet: TweetPartial, text: string): string => {
|
export const linkFixer = (tweet: TweetPartial, text: string): string => {
|
||||||
if (typeof tweet.entities?.urls !== 'undefined') {
|
if (typeof tweet.entities?.urls !== 'undefined') {
|
||||||
tweet.entities?.urls.forEach((url: TcoExpansion) => {
|
tweet.entities?.urls.forEach((url: TcoExpansion) => {
|
||||||
text = text.replace(url.url, url.expanded_url);
|
let newURL = url.expanded_url;
|
||||||
|
|
||||||
|
if (newURL.match(/^https:\/\/twitter\.com\/i\/web\/status\/\w+/g) !== null) {
|
||||||
|
newURL = '';
|
||||||
|
}
|
||||||
|
text = text.replace(url.url, newURL);
|
||||||
});
|
});
|
||||||
|
|
||||||
/* Remove any link with unavailable original.
|
/* Remove any link with unavailable original.
|
||||||
|
|
Loading…
Add table
Reference in a new issue