homebridge-melcloud-control 4.3.5-beta.32 → 4.3.5-beta.33

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/index.js CHANGED
@@ -132,6 +132,7 @@ class MelCloudPlatform {
132
132
  return;
133
133
  }
134
134
  if (logLevel.debug) log.info(melcloudDevicesList.Info);
135
+ await new Promise(r => setTimeout(r, 1000));
135
136
 
136
137
  //configured devices
137
138
  const ataDevices = (account.ataDevices || []).filter(device => device.id != null && String(device.id) !== '0');
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.5-beta.32",
4
+ "version": "4.3.5-beta.33",
5
5
  "description": "Homebridge plugin to control Mitsubishi Air Conditioner, Heat Pump and Energy Recovery Ventilation.",
6
6
  "license": "MIT",
7
7
  "author": "grzegorz914",
@@ -269,7 +269,7 @@ class MelCloudHome extends EventEmitter {
269
269
  devicesList.Devices = devices;
270
270
  devicesList.Scenes = scenes;
271
271
  devicesList.Headers = this.headers;
272
- this.emit('devicesList', devicesList);;
272
+ this.emit('devicesList', devicesList);
273
273
 
274
274
  return devicesList;
275
275
  } catch (error) {