audioplayer: allow to add https:// urls from playlist

This commit is contained in:
Stefan Seyfried
2017-09-24 16:19:21 +02:00
committed by Jacek Jendrzej
parent 7955467a77
commit 163815a2e0

View File

@@ -4,6 +4,7 @@
Copyright (C) 2001 Steffen Hehn 'McClean'
Copyright (C) 2002-2008 the tuxbox project contributors
Copyright (C) 2008 Novell, Inc. Author: Stefan Seyfried
Copyright (C) 2011-2013,2015,2017 Stefan Seyfried
Copyright (C) 2017 Sven Hoefer
License: GPL
@@ -1076,9 +1077,13 @@ void CAudioPlayerGui::processPlaylistUrl(const char *url, const char *name, cons
if (line[0] != '#')
{
//printf("chunk: line = %s\n", line);
ptr = strstr(line, "http://");
if (ptr != NULL)
{
const char *schemes[] = {"http://", "https://", NULL };
const char **scheme = schemes;
while (*scheme) {
ptr = strstr(line, *scheme);
scheme++;
if (ptr == NULL)
continue;
char *tmp;
// strip \n and \r characters from url
tmp = strchr(line, '\r');
@@ -1088,6 +1093,7 @@ void CAudioPlayerGui::processPlaylistUrl(const char *url, const char *name, cons
if (tmp != NULL)
*tmp = '\0';
addUrl2Playlist(ptr, name, tim);
break;
}
}
}