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
This commit is contained in:
Andreas Öman 2011-05-10 20:01:34 +02:00
parent f4756050ff
commit aaa86197bf

View file

@ -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);