return proper content type for mp3

This commit is contained in:
Shay Banon 2012-06-30 18:26:21 +02:00
parent 565db26e13
commit 22bdd161ad
1 changed files with 1 additions and 0 deletions

View File

@ -230,6 +230,7 @@ public class HttpServer extends AbstractLifecycleComponent<HttpServer> {
mimeTypes.put("png", "image/png");
mimeTypes.put("svg", "image/svg+xml");
mimeTypes.put("ico", "image/vnd.microsoft.icon");
mimeTypes.put("mp3", "audio/mpeg");
DEFAULT_MIME_TYPES = ImmutableMap.copyOf(mimeTypes);
}