From 15483b49474816756684302498a5e094028fc27a Mon Sep 17 00:00:00 2001 From: jangxx Date: Sat, 2 Mar 2019 15:19:17 +0100 Subject: [PATCH] reply option should be true by default --- HCMagicHome.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/HCMagicHome.js b/HCMagicHome.js index a4ab47c..e2c734e 100644 --- a/HCMagicHome.js +++ b/HCMagicHome.js @@ -14,7 +14,7 @@ class HCMagicHome extends HCColorLamp { } let opts = { - wait_for_reply: (this._configuration.reply !== undefined) ? this._configuration.reply : false, + wait_for_reply: (this._configuration.reply !== undefined) ? this._configuration.reply : true, log_all_received: (this._configuration.logall !== undefined) ? this._configuration.logall : false, };