diff options
author | Holger Weiss <holger@zedat.fu-berlin.de> | 2018-04-24 18:16:16 +0200 |
---|---|---|
committer | Holger Weiss <holger@zedat.fu-berlin.de> | 2018-04-24 18:16:16 +0200 |
commit | f3795e9d03435a0e4b5b329eca04a83a2b4646ed (patch) | |
tree | 0c0e21e76ed8c13b820f568436f74f550f97bc8d /src | |
parent | PubSub purge_node must use a transaction (#2231) (diff) |
mod_http_upload: Add MIME type for M4A files
Diffstat (limited to 'src')
-rw-r--r-- | src/mod_http_upload.erl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mod_http_upload.erl b/src/mod_http_upload.erl index cd897f0a5..e9dc9cff7 100644 --- a/src/mod_http_upload.erl +++ b/src/mod_http_upload.erl @@ -43,6 +43,7 @@ {<<".gz">>, <<"application/x-gzip">>}, {<<".jpeg">>, <<"image/jpeg">>}, {<<".jpg">>, <<"image/jpeg">>}, + {<<".m4a">>, <<"audio/mp4">>}, {<<".mp3">>, <<"audio/mpeg">>}, {<<".mp4">>, <<"video/mp4">>}, {<<".mpeg">>, <<"video/mpeg">>}, |