From cfb4e0a6ae272a36542dd314a32fcf131858debb Mon Sep 17 00:00:00 2001 From: ksooo <3226626+ksooo@users.noreply.github.com> Date: Sat, 28 Sep 2024 10:23:46 +0200 Subject: [PATCH] Fix pointless 'Not all properties handled' log spam. --- pvr.hts/addon.xml.in | 2 +- pvr.hts/changelog.txt | 3 +++ src/tvheadend/CustomTimerProperties.cpp | 6 ------ 3 files changed, 4 insertions(+), 7 deletions(-) diff --git a/pvr.hts/addon.xml.in b/pvr.hts/addon.xml.in index d1feb6d4..c383d67d 100644 --- a/pvr.hts/addon.xml.in +++ b/pvr.hts/addon.xml.in @@ -1,7 +1,7 @@ @ADDON_DEPENDS@ diff --git a/pvr.hts/changelog.txt b/pvr.hts/changelog.txt index f2cdc23b..837121c5 100644 --- a/pvr.hts/changelog.txt +++ b/pvr.hts/changelog.txt @@ -1,3 +1,6 @@ +v22.4.2 +- Fix pointless "Not all properties handled" log spam introduced with v22.4.1 + v22.4.1 - Fix pointless "Unknown property" log spam introduced with v22.4.0 - Fix update of "DVR configuration" property not working diff --git a/src/tvheadend/CustomTimerProperties.cpp b/src/tvheadend/CustomTimerProperties.cpp index 884ce5da..ee68e7f9 100644 --- a/src/tvheadend/CustomTimerProperties.cpp +++ b/src/tvheadend/CustomTimerProperties.cpp @@ -34,9 +34,6 @@ std::vector CustomTimerProperties::GetPrope std::vector customProps; GetCommonProperties(customProps, rec); - if (customProps.size() < m_propIds.size()) - Logger::Log(LogLevel::LEVEL_ERROR, "Not all properties handled!"); - return customProps; } @@ -63,9 +60,6 @@ std::vector CustomTimerProperties::GetPrope } } - if (customProps.size() < m_propIds.size()) - Logger::Log(LogLevel::LEVEL_ERROR, "Not all properties handled!"); - return customProps; }