summaryrefslogtreecommitdiff
path: root/epgsearchext.c
diff options
context:
space:
mode:
Diffstat (limited to 'epgsearchext.c')
-rw-r--r--epgsearchext.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/epgsearchext.c b/epgsearchext.c
index 37be75a..5362545 100644
--- a/epgsearchext.c
+++ b/epgsearchext.c
@@ -1114,16 +1114,16 @@ void cSearchExt::CheckRepeatTimers(cSearchResults* pResults)
return;
LogFile.Log(2,"analysing repeats for search timer '%s'...", search);
- if (action == searchTimerActionAnnounceOnly)
+ if (action != searchTimerActionRecord)
{
- LogFile.Log(3,"search timer set to 'announce only', so skip all");
+ LogFile.Log(3,"search timer not set to 'record', so skip all");
return;
}
cSearchResult* pResultObj = NULL;
for (pResultObj = pResults->First(); pResultObj; pResultObj = pResults->Next(pResultObj))
{
- if (action == searchTimerActionAnnounceOnly) // only announce if there is no timer for the event
+ if (action != searchTimerActionRecord) // only announce if there is no timer for the event
{
pResultObj->needsTimer = false;
continue;