From: littlesat Date: Sat, 4 Jul 2015 09:42:27 +0000 (+0200) Subject: Fix issue when justplay timer is busy and you start instant recording X-Git-Url: http://git.vuplus-community.net/?p=openblackhole%2Fopenblackhole-enigma2.git;a=commitdiff_plain;h=1d081bdee3ec53de2dd26156848f7fd746fe8d1c Fix issue when justplay timer is busy and you start instant recording --- diff --git a/lib/python/Components/TimerSanityCheck.py b/lib/python/Components/TimerSanityCheck.py index 0fa7f6e..c217b50 100644 --- a/lib/python/Components/TimerSanityCheck.py +++ b/lib/python/Components/TimerSanityCheck.py @@ -31,6 +31,8 @@ class TimerSanityCheck: if self.newtimer is not None and self.newtimer.service_ref.ref.valid(): self.simultimer = [ self.newtimer ] for timer in self.timerlist: + if timer == self.newtimer: + return True if self.newtimer.begin >= timer.begin and self.newtimer.end <= timer.end: if timer.justplay and not self.newtimer.justplay: continue