allow audio to be sent to client from the cache

This commit is contained in:
John Aylward 2020-11-04 14:34:37 -05:00
parent a90d42a556
commit 01c0d4bbfd
1 changed files with 1 additions and 1 deletions

View File

@ -384,7 +384,7 @@ class DiskCache {
$mimetype_blacklist = [ "image/svg+xml" ];
/* only serve video and images */
if (!preg_match("/(image|video)\//", $mimetype) || in_array($mimetype, $mimetype_blacklist)) {
if (!preg_match("/(image|audio|video)\//", $mimetype) || in_array($mimetype, $mimetype_blacklist)) {
http_response_code(400);
header("Content-type: text/plain");