reply option should be true by default

This commit is contained in:
jangxx 2019-03-02 15:19:17 +01:00
parent 14c2cc7e47
commit 15483b4947

View File

@ -14,7 +14,7 @@ class HCMagicHome extends HCColorLamp {
} }
let opts = { 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, log_all_received: (this._configuration.logall !== undefined) ? this._configuration.logall : false,
}; };