Allow .gif for direct media

This commit is contained in:
dangered wolf 2024-02-08 21:53:56 -05:00
parent 8297a56d15
commit e2f56af1ee
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -43,7 +43,7 @@ export const statusRequest = async (c: Context) => {
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)) {
if (url.pathname.match(/\/status(es)?\/\d{2,20}\.(mp4|png|jpe?g|gifv?)/g)) {
console.log('Direct media request by extension');
flags.direct = true;
} else if (Constants.DIRECT_MEDIA_DOMAINS.includes(url.hostname)) {