summaryrefslogtreecommitdiff
path: root/epgsearchext.c
diff options
context:
space:
mode:
authorFrank Neumann <fnu@yavdr.org>2017-05-08 21:52:14 +0200
committerFrank Neumann <fnu@yavdr.org>2017-05-08 21:52:14 +0200
commiteef65d769b0569b9a1def3da0fe1b889a714a9ee (patch)
tree22197974857656963bd7296bf480ec5d5ababfcf /epgsearchext.c
parent978c185934f91100b31c8d9e6f6f47e54dead22f (diff)
downloadvdr-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.c4
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;