mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-06 11:00:54 +01:00
Consistency in id handling
This commit is contained in:
parent
edad678867
commit
d57136bf8f
1 changed files with 3 additions and 3 deletions
|
@ -22,7 +22,7 @@ const statusRequest = async (
|
||||||
) !== null;
|
) !== null;
|
||||||
|
|
||||||
if (
|
if (
|
||||||
url.pathname.match(/\/status(es)?\/\d+\.(mp4|png|jpg)/g) !== null ||
|
url.pathname.match(/\/status(es)?\/\d{2,20}\.(mp4|png|jpg)/g) !== null ||
|
||||||
Constants.DIRECT_MEDIA_DOMAINS.includes(url.hostname) ||
|
Constants.DIRECT_MEDIA_DOMAINS.includes(url.hostname) ||
|
||||||
prefix === 'dl' ||
|
prefix === 'dl' ||
|
||||||
prefix === 'dir'
|
prefix === 'dir'
|
||||||
|
@ -40,7 +40,7 @@ const statusRequest = async (
|
||||||
}
|
}
|
||||||
|
|
||||||
if (
|
if (
|
||||||
url.pathname.match(/\/status(es)?\/\d+\.(json)/g) !== null ||
|
url.pathname.match(/\/status(es)?\/\d{2,20}\.(json)/g) !== null ||
|
||||||
Constants.API_HOST_LIST.includes(url.hostname)
|
Constants.API_HOST_LIST.includes(url.hostname)
|
||||||
) {
|
) {
|
||||||
console.log('JSON API request');
|
console.log('JSON API request');
|
||||||
|
@ -84,7 +84,7 @@ const statusRequest = async (
|
||||||
return response;
|
return response;
|
||||||
} else {
|
} else {
|
||||||
console.log('Matched human UA', userAgent);
|
console.log('Matched human UA', userAgent);
|
||||||
return Response.redirect(`${Constants.TWITTER_ROOT}/${handle}/status/${id}`, 302);
|
return Response.redirect(`${Constants.TWITTER_ROOT}/${handle}/status/${id?.match(/\d{2,20}/)?.[0]}`, 302);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue