diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2002-11-01 11:11:20 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2002-11-01 11:11:20 +0100 |
commit | 7233a6368051c0dcff527fece6ddcfaa2740a9de (patch) | |
tree | 543cc9f7d4769f2e215f351c78fad66d7ade1e49 /eitscan.c | |
parent | c1a5a7d50c4a45b3d3d65717c788e1925463a61e (diff) | |
download | vdr-7233a6368051c0dcff527fece6ddcfaa2740a9de.tar.gz vdr-7233a6368051c0dcff527fece6ddcfaa2740a9de.tar.bz2 |
Fixed the EPG scanner, which broke 'Transfer Mode' as soon as it kicked in
Diffstat (limited to 'eitscan.c')
-rw-r--r-- | eitscan.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: eitscan.c 1.9 2002/10/19 11:48:02 kls Exp $ + * $Id: eitscan.c 1.10 2002/11/01 11:04:49 kls Exp $ */ #include "eitscan.h" @@ -55,7 +55,7 @@ void cEITScanner::Process(void) cDevice *Device = cDevice::GetDevice(i); if (Device && Device->CardIndex() < MAXDVBDEVICES) { if (Device != cDevice::PrimaryDevice() || (cDevice::NumDevices() == 1 && Setup.EPGScanTimeout && now - lastActivity > Setup.EPGScanTimeout * 3600)) { - if (!(Device->Receiving() || Device->Replaying())) { + if (!(Device->Receiving(true) || Device->Replaying())) { int oldCh = lastChannel; int ch = oldCh + 1; while (ch != oldCh) { |