Skip to content

Commit

Permalink
fix publish mqtt message
Browse files Browse the repository at this point in the history
  • Loading branch information
grzegorz914 committed Aug 28, 2022
1 parent 50fae5e commit 2165e38
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/xboxlocalapi.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 2165e38

Please sign in to comment.