summaryrefslogtreecommitdiff
path: root/epgsearchext.c
diff options
context:
space:
mode:
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 9b793f6..844c789 100644
--- a/epgsearchext.c
+++ b/epgsearchext.c
@@ -1181,7 +1181,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;
@@ -1196,7 +1196,7 @@ void cSearchExt::CheckRepeatTimers(cSearchResults* pResults)
#endif
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;