From 61d7f75e77c008a6fe220d74394c60461ab799a4 Mon Sep 17 00:00:00 2001 From: phunkyfish Date: Mon, 25 Nov 2024 08:27:28 +0000 Subject: [PATCH 1/2] Also test channel name when setting autotimer parents to timers --- src/enigma2/Timers.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/enigma2/Timers.cpp b/src/enigma2/Timers.cpp index b15ae414..df203a2a 100644 --- a/src/enigma2/Timers.cpp +++ b/src/enigma2/Timers.cpp @@ -1294,7 +1294,8 @@ bool Timers::TimerUpdatesAuto() { const std::string autotimerTag = ConvertToAutoTimerTag(autoTimer.GetTitle()); - if (timer.GetType() == Timer::EPG_AUTO_ONCE && timer.ContainsTag(TAG_FOR_AUTOTIMER) && timer.ContainsTag(autotimerTag)) + if (timer.GetType() == Timer::EPG_AUTO_ONCE && timer.ContainsTag(TAG_FOR_AUTOTIMER) && + timer.ContainsTag(autotimerTag) && autoTimer.GetChannelName() == timer.GetChannelName()) { timer.SetParentClientIndex(autoTimer.GetClientIndex()); continue; From 49cb67bd2a538f93f3c59f15d4783ef26eadf68d Mon Sep 17 00:00:00 2001 From: phunkyfish Date: Mon, 25 Nov 2024 08:28:26 +0000 Subject: [PATCH 2/2] changelog and version 22.3.1 --- pvr.vuplus/addon.xml.in | 2 +- pvr.vuplus/changelog.txt | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/pvr.vuplus/addon.xml.in b/pvr.vuplus/addon.xml.in index 0dd9d814..1e4332b6 100644 --- a/pvr.vuplus/addon.xml.in +++ b/pvr.vuplus/addon.xml.in @@ -1,7 +1,7 @@ @ADDON_DEPENDS@ diff --git a/pvr.vuplus/changelog.txt b/pvr.vuplus/changelog.txt index 10863c09..aeb37fc3 100644 --- a/pvr.vuplus/changelog.txt +++ b/pvr.vuplus/changelog.txt @@ -1,3 +1,6 @@ +v22.3.1 +- Also test channel name when setting autotimer parents to timers + v22.3.0 - Add expert setting to toggle using OpenWebIf internal MovieList on/off