homebridge-melcloud-control 4.3.16-beta.0 → 4.3.16-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/melcloudhome.js +1 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"displayName": "MELCloud Control",
|
|
3
3
|
"name": "homebridge-melcloud-control",
|
|
4
|
-
"version": "4.3.16-beta.
|
|
4
|
+
"version": "4.3.16-beta.1",
|
|
5
5
|
"description": "Homebridge plugin to control Mitsubishi Air Conditioner, Heat Pump and Energy Recovery Ventilation.",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"author": "grzegorz914",
|
package/src/melcloudhome.js
CHANGED
|
@@ -424,7 +424,7 @@ class MelCloudHome extends EventEmitter {
|
|
|
424
424
|
this.emit('client', this.client);
|
|
425
425
|
|
|
426
426
|
accountInfo.State = true;
|
|
427
|
-
accountInfo.Info = `Connect Success
|
|
427
|
+
accountInfo.Info = `Connect Success${this.socketConnected ? ', Web Socket Connected' : ''}`;
|
|
428
428
|
await this.functions.saveData(this.accountFile, accountInfo);
|
|
429
429
|
|
|
430
430
|
return accountInfo;
|