From 2cc7aaf9400f01d017c9911a5877532233242b11 Mon Sep 17 00:00:00 2001 From: phunkyfish Date: Wed, 22 Mar 2023 15:44:33 +0000 Subject: [PATCH 1/2] Allow channel logo paths containing spaces --- src/iptvsimple/PlaylistLoader.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/iptvsimple/PlaylistLoader.cpp b/src/iptvsimple/PlaylistLoader.cpp index ccf29d746..9d86c1941 100644 --- a/src/iptvsimple/PlaylistLoader.cpp +++ b/src/iptvsimple/PlaylistLoader.cpp @@ -553,7 +553,7 @@ std::string PlaylistLoader::ReadMarkerValue(const std::string& line, const std:: markerStart += marker.length(); if (markerStart < line.length()) { - if (marker == M3U_GROUP_MARKER && line[markerStart] != '"') + if ((marker == M3U_GROUP_MARKER || marker == TVG_INFO_LOGO_MARKER) && line[markerStart] != '"') { //For this case we just want to return the full string without splitting it //This is because groups use semi-colons and not spaces as a delimiter From baaade28c7cb5ea80b22d960a3de4b8f7084357f Mon Sep 17 00:00:00 2001 From: phunkyfish Date: Wed, 22 Mar 2023 15:52:31 +0000 Subject: [PATCH 2/2] changelog and version v21.2.1 --- pvr.iptvsimple/addon.xml.in | 2 +- pvr.iptvsimple/changelog.txt | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/pvr.iptvsimple/addon.xml.in b/pvr.iptvsimple/addon.xml.in index ae9145046..125d721df 100644 --- a/pvr.iptvsimple/addon.xml.in +++ b/pvr.iptvsimple/addon.xml.in @@ -1,7 +1,7 @@ @ADDON_DEPENDS@ diff --git a/pvr.iptvsimple/changelog.txt b/pvr.iptvsimple/changelog.txt index 06361b52d..b7df73a60 100644 --- a/pvr.iptvsimple/changelog.txt +++ b/pvr.iptvsimple/changelog.txt @@ -1,3 +1,6 @@ +v21.2.1 +- Allow channel logo paths containing spaces + v21.2.0 - Support async connect