From 88adf3da1b8ed0ecc3bb17d34d2322e344cb06a6 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Thu, 16 Aug 2018 12:16:51 +0300 Subject: send_local_file: add application/octet-stream hack cached_url: return original requested filename to save as --- include/functions.php | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'include/functions.php') diff --git a/include/functions.php b/include/functions.php index 7ebbe38b3..b6e49716c 100755 --- a/include/functions.php +++ b/include/functions.php @@ -2574,6 +2574,13 @@ } $mimetype = mime_content_type($filename); + + // this is hardly ideal but 1) only media is cached in images/ and 2) seemingly only mp4 + // video files are detected as octet-stream by mime_content_type() + + if ($mimetype == "application/octet-stream") + $mimetype = "video/mp4"; + header("Content-type: $mimetype"); $stamp = gmdate("D, d M Y H:i:s", filemtime($filename)) . " GMT"; -- cgit v1.2.3