diff options
author | Christian Wieninger <cwieninger (at) gmx (dot) de> | 2009-02-22 10:42:19 +0100 |
---|---|---|
committer | Christian Wieninger <cwieninger (at) gmx (dot) de> | 2009-02-22 10:42:19 +0100 |
commit | 64b7160f9e9176a3b9e7b95ce16fa5c01693dd04 (patch) | |
tree | 5f556f9d0d08d3d1df877f98a5ba73a0fc098232 /searchtimer_thread.c | |
parent | bceeecfe25a52c3c66a6fc45b255ee80e664a508 (diff) | |
download | vdr-plugin-epgsearch-64b7160f9e9176a3b9e7b95ce16fa5c01693dd04.tar.gz vdr-plugin-epgsearch-64b7160f9e9176a3b9e7b95ce16fa5c01693dd04.tar.bz2 |
'no announcements while replay' was broken
Diffstat (limited to 'searchtimer_thread.c')
-rw-r--r-- | searchtimer_thread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searchtimer_thread.c b/searchtimer_thread.c index 80a6885..af89714 100644 --- a/searchtimer_thread.c +++ b/searchtimer_thread.c @@ -407,7 +407,7 @@ void cSearchTimerThread::Action(void) if (t || // timer already exists or NoAnnounces.InList(pEvent) || // announcement not wanted anymore or (EPGSearchConfig.noAnnounceWhileReplay && - cDevice::PrimaryDevice()->Replaying() && cDevice::PrimaryDevice()->Transferring() && + cDevice::PrimaryDevice()->Replaying() && !(updateForced & UPDS_WITH_OSD)) // no announce while replay within automatic updates ) { |