summaryrefslogtreecommitdiff
path: root/classes/diskcache.php
diff options
context:
space:
mode:
authorJohn Aylward <[email protected]>2020-11-04 14:34:37 -0500
committerJohn Aylward <[email protected]>2020-11-04 14:34:37 -0500
commit01c0d4bbfd2cdc039c28d79debb2a3959d3b2631 (patch)
treeae3282c0c52869e4199d1e1e1f5463f17f7ddfeb /classes/diskcache.php
parenta90d42a556d01bb7376538eb2d5db7d5e52edaf2 (diff)
allow audio to be sent to client from the cache
Diffstat (limited to 'classes/diskcache.php')
-rw-r--r--classes/diskcache.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/diskcache.php b/classes/diskcache.php
index 6a8aa89c4..c56dc6f14 100644
--- a/classes/diskcache.php
+++ b/classes/diskcache.php
@@ -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");