diff --git a/pvr.hts/changelog.txt b/pvr.hts/changelog.txt index 1b7f5cdc..f2cdc23b 100644 --- a/pvr.hts/changelog.txt +++ b/pvr.hts/changelog.txt @@ -1,5 +1,6 @@ v22.4.1 - Fix pointless "Unknown property" log spam introduced with v22.4.0 +- Fix update of "DVR configuration" property not working v22.4.0 - PVR Add-on API v9.1.0 diff --git a/src/tvheadend/entity/Recording.h b/src/tvheadend/entity/Recording.h index 1b391cc4..1332b00a 100644 --- a/src/tvheadend/entity/Recording.h +++ b/src/tvheadend/entity/Recording.h @@ -58,8 +58,7 @@ class Recording : public RecordingBase m_contentType == other.m_contentType && m_season == other.m_season && m_episode == other.m_episode && m_part == other.m_part && m_ageRating == other.m_ageRating && m_ratingLabel == other.m_ratingLabel && - m_ratingIcon == other.m_ratingIcon && m_ratingSource == other.m_ratingSource && - m_configUuid == other.m_configUuid; + m_ratingIcon == other.m_ratingIcon && m_ratingSource == other.m_ratingSource; } bool operator!=(const Recording& other) { return !(*this == other); } @@ -186,9 +185,6 @@ class Recording : public RecordingBase const std::string& GetRatingSource() const { return m_ratingSource; } void SetRatingSource(const std::string& ratingSource) { m_ratingSource = ratingSource; } - const std::string& GetConfigUuid() const { return m_configUuid; } - void SetConfigUuid(const std::string& uuid) { m_configUuid = uuid; } - private: uint32_t m_channelType{0}; std::string m_channelName; @@ -219,7 +215,6 @@ class Recording : public RecordingBase std::string m_ratingLabel; std::string m_ratingIcon; std::string m_ratingSource; - std::string m_configUuid; // DVR configuration UUID. }; } // namespace tvheadend::entity