FS-5197 --resolve

This commit is contained in:
Anthony Minessale 2013-03-18 16:08:46 -05:00
parent f45fa08e15
commit e7f6ea7200

View File

@ -2602,9 +2602,9 @@ static switch_status_t locate_url_file(http_file_context_t *context, const char
if ((!context->url_params || !switch_event_get_header(context->url_params, "ext"))
&& headers && (ct = switch_event_get_header(headers, "content-type"))) {
if (switch_strcasecmp_any(ct, "audio/mpeg", "audio/x-mpeg", "audio/mp3", "audio/x-mp3", "audio/mpeg3",
"audio/x-mpeg3", "audio/mpg", "audio/x-mpg", "audio/x-mpegaudio")) {
"audio/x-mpeg3", "audio/mpg", "audio/x-mpg", "audio/x-mpegaudio", NULL)) {
newext = "mp3";
} else if (switch_strcasecmp_any(ct, "audio/wav", "audio/x-wave", "audio/wav")) {
} else if (switch_strcasecmp_any(ct, "audio/wav", "audio/x-wave", "audio/wav", NULL)) {
newext = "wav";
}
}