playlist/m3u: recognize the file suffix ".m3u8"

This commit is contained in:
Max Kellermann
2014-10-26 08:14:16 +01:00
parent f6b2899dd2
commit c882568ccd
3 changed files with 5 additions and 1 deletions

View File

@@ -135,7 +135,8 @@ ExtM3uPlaylist::NextSong()
static const char *const extm3u_suffixes[] = {
"m3u",
NULL
"m3u8",
nullptr
};
static const char *const extm3u_mime_types[] = {

View File

@@ -61,6 +61,7 @@ M3uPlaylist::NextSong()
static const char *const m3u_suffixes[] = {
"m3u",
"m3u8",
nullptr
};