diff options
author | Midas <vdrportal_midas@gmx.de> | 2010-06-03 17:18:41 +0200 |
---|---|---|
committer | Midas <vdrportal_midas@gmx.de> | 2010-06-03 17:18:41 +0200 |
commit | f9aace9ae188a9e3eec61400f2f0ea996f10aff5 (patch) | |
tree | 0cb1ff424f2c2311c959cbc591582d9ceb801e0a | |
parent | 14610db72dffbd223bd677c8a3e3186b0f838636 (diff) | |
download | vdr-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.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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); |