diff options
author | Andrey Andreev <narf@devilix.net> | 2019-08-13 15:13:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-13 15:13:48 +0200 |
commit | a66c71e131c2a7f05d57b03c8619d9bdd542b5bf (patch) | |
tree | ee616bfc83cacb2d9a70cc8e8191b88994307568 /application/config | |
parent | dd2e042f14e5147ff75a03fdba9926805ae8ec88 (diff) | |
parent | d267b0660926228940cf010449fb4eb832fc36b5 (diff) |
[ci skip] Merge pull request #5815 from kamaslau/patch-2
Fix .aac file mime type
Diffstat (limited to 'application/config')
-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', |