From 9aaa68bf47c5123200d98c6ae823f3025041122e Mon Sep 17 00:00:00 2001 From: Jacek Jendrzej Date: Tue, 5 Apr 2016 17:17:47 +0200 Subject: [PATCH] supplement to 1da21f8936b9b59f963525c117b6ae7b9cbf4bb5 Origin commit data ------------------ Commit: https://github.com/neutrino-images/ni-neutrino/commit/f684fd50a0ea889ea6e14e664be24afbe0959f39 Author: Jacek Jendrzej Date: 2016-04-05 (Tue, 05 Apr 2016) --- 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); } }