From 2165e38067487ad3846aa1226add03876e8508c8 Mon Sep 17 00:00:00 2001 From: Grzegorz Date: Sun, 28 Aug 2022 19:15:03 +0200 Subject: [PATCH] fix publish mqtt message --- CHANGELOG.md | 4 ++++ package.json | 2 +- src/xboxlocalapi.js | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e1e867a..6a98e00 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### NOTE!!! ## After update to 2.x.x the plugin settings (xboxLiveId) need to be updated. +## [2.3.2] - (28.08.2022) +## Changed +- fix publish MQTT message + ## [2.3.0] - (24.08.2022) ## Changed - fix MQTT device info diff --git a/package.json b/package.json index cd11152..77854c6 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "displayName": "Xbox TV", "name": "homebridge-xbox-tv", - "version": "2.3.1", + "version": "2.3.2", "description": "Homebridge plugin (https://github.com/homebridge/homebridge) to control Xbox game consoles.", "license": "MIT", "author": "grzegorz914", diff --git a/src/xboxlocalapi.js b/src/xboxlocalapi.js index 9d9436e..7b65883 100644 --- a/src/xboxlocalapi.js +++ b/src/xboxlocalapi.js @@ -21,7 +21,7 @@ class XBOXLOCALAPI extends EventEmitter { this.userHash = config.uhs; this.infoLog = config.infoLog; this.debugLog = config.debugLog; - this.mqttEnabled = config.enableMqtt; + this.mqttEnabled = config.mqttEnabled; this.crypto = new SGCrypto(); this.isConnected = false;