From f684fd50a0ea889ea6e14e664be24afbe0959f39 Mon Sep 17 00:00:00 2001 From: Jacek Jendrzej Date: Tue, 5 Apr 2016 17:17:47 +0200 Subject: [PATCH] supplement to 2c700641c11b7f9985c5d2f8f1233252c3c73e7f --- src/daemonc/remotecontrol.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/daemonc/remotecontrol.cpp b/src/daemonc/remotecontrol.cpp index 03e515d01..6d7980917 100644 --- a/src/daemonc/remotecontrol.cpp +++ b/src/daemonc/remotecontrol.cpp @@ -144,7 +144,7 @@ int CRemoteControl::handleMsg(const neutrino_msg_t msg, neutrino_msg_data_t data (g_settings.parentallock_prompt == PARENTALLOCK_PROMPT_ONSIGNAL)){ CSectionsdClient::responseGetCurrentNextInfoChannelID currentNextInfo; CEitManager::getInstance()->getCurrentNextServiceKey(current_channel_id, currentNextInfo); - if(currentNextInfo.current_fsk && currentNextInfo.current_fsk >= g_settings.parentallock_lockage){ + if(currentNextInfo.current_fsk && currentNextInfo.current_fsk > g_settings.parentallock_lockage){ g_RCInput->postMsg(NeutrinoMessages::EVT_PROGRAMLOCKSTATUS, 0x100, false); } }