diff options
author | Frank Neumann <fnu@yavdr.org> | 2017-05-08 21:52:14 +0200 |
---|---|---|
committer | Frank Neumann <fnu@yavdr.org> | 2017-05-08 21:52:14 +0200 |
commit | eef65d769b0569b9a1def3da0fe1b889a714a9ee (patch) | |
tree | 22197974857656963bd7296bf480ec5d5ababfcf /epgsearchext.c | |
parent | 978c185934f91100b31c8d9e6f6f47e54dead22f (diff) | |
download | vdr-plugin-epgsearch-eef65d769b0569b9a1def3da0fe1b889a714a9ee.tar.gz vdr-plugin-epgsearch-eef65d769b0569b9a1def3da0fe1b889a714a9ee.tar.bz2 |
commit epgsearch-inactive-records-v1.diff (thx lhanisch@vdr-developer.org)
Diffstat (limited to 'epgsearchext.c')
-rw-r--r-- | epgsearchext.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/epgsearchext.c b/epgsearchext.c index 1db0523..e4fe23b 100644 --- a/epgsearchext.c +++ b/epgsearchext.c @@ -1158,7 +1158,7 @@ void cSearchExt::CheckRepeatTimers(cSearchResults* pResults) return; LogFile.Log(2,"analysing repeats for search timer '%s'...", search); - if (action != searchTimerActionRecord) + if ((action != searchTimerActionRecord) && (action != searchTimerActionInactiveRecord)) { LogFile.Log(3,"search timer not set to 'record', so skip all"); return; @@ -1167,7 +1167,7 @@ void cSearchExt::CheckRepeatTimers(cSearchResults* pResults) cSearchResult* pResultObj = NULL; for (pResultObj = pResults->First(); pResultObj; pResultObj = pResults->Next(pResultObj)) { - if (action != searchTimerActionRecord) // only announce if there is no timer for the event + if ((action != searchTimerActionRecord) && (action != searchTimerActionInactiveRecord)) // only announce if there is no timer for the event { pResultObj->needsTimer = false; continue; |