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; }