diff options
author | Kamas "Iceberg" Lau <kamaslau@users.noreply.github.com> | 2019-08-11 00:24:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-11 00:24:44 +0200 |
commit | d267b0660926228940cf010449fb4eb832fc36b5 (patch) | |
tree | 93bf8eeaa266fa4992b9afc2d9b2ce1630d981a6 | |
parent | 66b1bf6145537b02e7386e783ffd60112f33baf6 (diff) |
Fix .aac file mime type
-rw-r--r-- | application/config/mimes.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/application/config/mimes.php b/application/config/mimes.php index 0ec9db0a0..7aa5c9e4e 100644 --- a/application/config/mimes.php +++ b/application/config/mimes.php @@ -140,7 +140,7 @@ return array( 'f4v' => array('video/mp4', 'video/x-f4v'), 'flv' => 'video/x-flv', 'webm' => 'video/webm', - 'aac' => 'audio/x-acc', + 'aac' => array('audio/x-aac', 'audio/aac'), 'm4u' => 'application/vnd.mpegurl', 'm3u' => 'text/plain', 'xspf' => 'application/xspf+xml', |