From aaa86197bfd1d6bc92969ae0bd400b21e97f4786 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20=C3=96man?= Date: Tue, 10 May 2011 20:01:34 +0200 Subject: [PATCH] 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 --- src/webui/webui.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/webui/webui.c b/src/webui/webui.c index fc1b39ff..2d812615 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);