From: Andreas Ă–man Date: Tue, 10 May 2011 18:01:34 +0000 (+0200) Subject: Change the M3U playlist return mime-type to "audio/x-mpegurl" X-Git-Tag: 2.99~55 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=aaa86197bfd1d6bc92969ae0bd400b21e97f4786;p=thirdparty%2Ftvheadend.git Change the M3U playlist return mime-type to "audio/x-mpegurl" According to (http://www.w3schools.com/media/media_mimeref.asp) this is more correct (there's no application/... variant). Patch by cyberjunk --- diff --git a/src/webui/webui.c b/src/webui/webui.c index fc1b39ff8..2d8126152 100644 --- a/src/webui/webui.c +++ b/src/webui/webui.c @@ -262,7 +262,7 @@ http_stream_playlist(http_connection_t *hc, channel_t *channel) } } - http_output_content(hc, "application/x-mpegURL"); + http_output_content(hc, "audio/x-mpegurl"); pthread_mutex_unlock(&global_lock);