From 80d68d7e5a3681e4e380325e8d78c3ca93dd35ae Mon Sep 17 00:00:00 2001 From: Jacek Jendrzej Date: Thu, 14 Jan 2016 19:10:55 +0100 Subject: [PATCH] src/gui/movieplayer.cpp add https to m3u filter --- src/gui/movieplayer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/movieplayer.cpp b/src/gui/movieplayer.cpp index fd822d373..27a4ad4da 100644 --- a/src/gui/movieplayer.cpp +++ b/src/gui/movieplayer.cpp @@ -2169,7 +2169,7 @@ void CMoviePlayerGui::parsePlaylist(CFile *file) if (strlen(cLine) > 0 && cLine[0]!='#') { char *url = NULL; - if ((url = strstr(cLine, "http://")) || (url = strstr(cLine, "rtmp://")) || (url = strstr(cLine, "rtsp://")) || (url = strstr(cLine, "mmsh://")) ) { + if ((url = strstr(cLine, "http://")) || (url = strstr(cLine, "https://")) || (url = strstr(cLine, "rtmp://")) || (url = strstr(cLine, "rtsp://")) || (url = strstr(cLine, "mmsh://")) ) { if (url != NULL) { printf("name %s [%d] url: %s\n", name, dur, url); tmp_file.Name = name;