summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMidas <vdrportal_midas@gmx.de>2010-06-03 17:18:41 +0200
committerMidas <vdrportal_midas@gmx.de>2010-06-03 17:18:41 +0200
commitf9aace9ae188a9e3eec61400f2f0ea996f10aff5 (patch)
tree0cb1ff424f2c2311c959cbc591582d9ceb801e0a
parent14610db72dffbd223bd677c8a3e3186b0f838636 (diff)
downloadvdr-plugin-block-f9aace9ae188a9e3eec61400f2f0ea996f10aff5.tar.gz
vdr-plugin-block-f9aace9ae188a9e3eec61400f2f0ea996f10aff5.tar.bz2
The new detection method 'Channel EPG' sometimes switched
into the wrong direction. Hopefully fixed now. Thanks to igel for testing and reporting.
-rw-r--r--block.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/block.c b/block.c
index 1734bdd..29201f8 100644
--- a/block.c
+++ b/block.c
@@ -106,9 +106,10 @@ void cPluginBlock::MainThreadHook()
{
if (SetupBlock.DetectionMethod!=1) return;//other detection method active in setup
channelnumber=cDevice::PrimaryDevice()->CurrentChannel();
- if (mLastChannel==0)
+ if (channelnumber==0 || mLastChannel==0) //cond#1: switch in progress
{
- mLastChannel=channelnumber;
+ mLastChannel=cDevice::CurrentChannel();
+ return;
}
const cChannel *channel=Channels.GetByNumber(channelnumber);