From 33902536c185a1d35758e0494e4f2339f2d1eef2 Mon Sep 17 00:00:00 2001 From: Ondrej Mikle Date: Fri, 20 Apr 2018 21:31:38 +0200 Subject: [PATCH] Disable reporting of open/close switch, needs rewrite --- brmdoor_nfc_daemon.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/brmdoor_nfc_daemon.py b/brmdoor_nfc_daemon.py index 63194d9..87627bf 100755 --- a/brmdoor_nfc_daemon.py +++ b/brmdoor_nfc_daemon.py @@ -373,10 +373,11 @@ if __name__ == "__main__": ircThread = IrcThread(config, ircMsgQueue) ircThread.setDaemon(True) ircThread.start() - if config.useOpenSwitch: - openSwitchThread = OpenSwitchThread(config, ircThread) - openSwitchThread.setDaemon(True) - openSwitchThread.start() + # Disable for now, topic is not working properly + # if config.useOpenSwitch: + # openSwitchThread = OpenSwitchThread(config, ircThread) + # openSwitchThread.setDaemon(True) + # openSwitchThread.start() nfcScanner = NFCScanner(config, ircMsgQueue, ircThread) nfcScanner.run()