summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohann Friedrichs <johann.friedrichs@web.de>2018-04-16 18:29:07 +0200
committerJohann Friedrichs <johann.friedrichs@web.de>2018-04-16 18:29:07 +0200
commit494af709ea10292d210e35727832313ca69d4dc7 (patch)
tree321ec9dce0e945e8bff280ff935a384fda20de0f
parent5887e0a7d8ccaa626b559aac303e9e4d7a729769 (diff)
downloadvdr-plugin-epgsearch-494af709ea10292d210e35727832313ca69d4dc7.tar.gz
vdr-plugin-epgsearch-494af709ea10292d210e35727832313ca69d4dc7.tar.bz2
Preserve timerflags in searchtimerupdate
-rw-r--r--searchtimer_thread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/searchtimer_thread.c b/searchtimer_thread.c
index a879487..c6b6dc6 100644
--- a/searchtimer_thread.c
+++ b/searchtimer_thread.c
@@ -630,7 +630,7 @@ bool cSearchTimerThread::AddModTimer(cTimer* Timer, int index, cSearchExt* searc
start = pEvent->Vps();
stop = start + pEvent->Duration();
} else
- Flags = 1; // don't use VPS, if not set in this search
+ Flags &= ~tfVps; // don't use VPS, if not set in this search
if (searchExt->action == searchTimerActionInactiveRecord)
Flags &= ~tfActive;