From 4414c6eafb05d001d5eb62ae5670e9875cad2147 Mon Sep 17 00:00:00 2001 From: matthuisman Date: Thu, 18 Aug 2022 22:54:35 +1200 Subject: [PATCH 1/2] Fix urlFile missing last character --- src/iptvsimple/data/Channel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/iptvsimple/data/Channel.cpp b/src/iptvsimple/data/Channel.cpp index d5b8d15be..e16c3cdf1 100644 --- a/src/iptvsimple/data/Channel.cpp +++ b/src/iptvsimple/data/Channel.cpp @@ -147,7 +147,7 @@ void Channel::SetIconPathFromTvgLogo(const std::string& tvgLogo, std::string& ch if (argumentsPos != std::string::npos && argumentsPos > 0) { urlArguments = urlFile.substr(argumentsPos); - urlFile = urlFile.substr(0, argumentsPos - 1); + urlFile = urlFile.substr(0, argumentsPos); } if (!utilities::WebUtils::IsEncoded(urlFile)) From 7963ba5fc84ebc071c269896c9fb259e15d44793 Mon Sep 17 00:00:00 2001 From: matthuisman Date: Thu, 18 Aug 2022 23:03:36 +1200 Subject: [PATCH 2/2] changelog and version - 19.2.2 --- pvr.iptvsimple/addon.xml.in | 5 ++++- pvr.iptvsimple/changelog.txt | 3 +++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/pvr.iptvsimple/addon.xml.in b/pvr.iptvsimple/addon.xml.in index 6f920c69e..25662bd50 100644 --- a/pvr.iptvsimple/addon.xml.in +++ b/pvr.iptvsimple/addon.xml.in @@ -1,7 +1,7 @@ @ADDON_DEPENDS@ @@ -21,6 +21,9 @@ icon.png +v19.2.2 +- Fixed: Some icons using url arguments not displaying + v19.2.1 - Support url arguments when encoding file portion of icon URL diff --git a/pvr.iptvsimple/changelog.txt b/pvr.iptvsimple/changelog.txt index aec86351e..0dd8af5b2 100644 --- a/pvr.iptvsimple/changelog.txt +++ b/pvr.iptvsimple/changelog.txt @@ -1,3 +1,6 @@ +v19.2.2 +- Fixed: Some icons using url arguments not displaying + v19.2.1 - Support url arguments when encoding file portion of icon URL