mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 18:40:56 +01:00
Improve logging for direct media requests
This commit is contained in:
parent
2b90894315
commit
02c702387d
1 changed files with 7 additions and 6 deletions
|
@ -45,14 +45,15 @@ const statusRequest = async (
|
|||
|
||||
Also note that all we're doing here is setting the direct flag. If someone
|
||||
links a video and ends it with .jpg, it will still redirect to a .mp4! */
|
||||
if (
|
||||
url.pathname.match(/\/status(es)?\/\d{2,20}\.(mp4|png|jpe?g)/g) !== null ||
|
||||
Constants.DIRECT_MEDIA_DOMAINS.includes(url.hostname) ||
|
||||
prefix === 'dl' ||
|
||||
prefix === 'dir'
|
||||
) {
|
||||
if ( url.pathname.match(/\/status(es)?\/\d{2,20}\.(mp4|png|jpe?g)/g)) {
|
||||
console.log('Direct media request by extension');
|
||||
flags.direct = true;
|
||||
} else if (Constants.DIRECT_MEDIA_DOMAINS.includes(url.hostname)) {
|
||||
console.log('Direct media request by domain');
|
||||
flags.direct = true;
|
||||
} else if (prefix === 'dl' || prefix === 'dir') {
|
||||
console.log('Direct media request by path prefix');
|
||||
flags.direct = true;
|
||||
}
|
||||
|
||||
/* The pxtwitter.com domain is deprecated and Tweets posted after deprecation
|
||||
|
|
Loading…
Add table
Reference in a new issue