summaryrefslogtreecommitdiff
path: root/epgsearchext.c
diff options
context:
space:
mode:
authorChristian Wieninger <cwieninger (at) gmx (dot) de>2009-09-20 12:45:32 +0200
committerChristian Wieninger <cwieninger (at) gmx (dot) de>2009-09-20 12:45:32 +0200
commitdf09c23571eee2d45b856aed17b38deca44b0bbb (patch)
tree99c0f827137d8535884562893fb5a92893e0dbd7 /epgsearchext.c
parent5b4c9ee0bf713fc36709563733059426458ab485 (diff)
downloadvdr-plugin-epgsearch-df09c23571eee2d45b856aed17b38deca44b0bbb.tar.gz
vdr-plugin-epgsearch-df09c23571eee2d45b856aed17b38deca44b0bbb.tar.bz2
announcement of new events by mail
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;