homebridge-melcloud-control 4.3.15-beta.0 → 4.3.15

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "displayName": "MELCloud Control",
3
3
  "name": "homebridge-melcloud-control",
4
- "version": "4.3.15-beta.0",
4
+ "version": "4.3.15",
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/functions.js CHANGED
@@ -183,7 +183,6 @@ class Functions extends EventEmitter {
183
183
  }
184
184
  }
185
185
 
186
-
187
186
  isValidValue(v) {
188
187
  return v !== undefined && v !== null && !(typeof v === 'number' && Number.isNaN(v));
189
188
  }
@@ -219,7 +219,7 @@ class MelCloudHome extends EventEmitter {
219
219
 
220
220
  async connect() {
221
221
  if (this.logDebug) this.emit('debug', 'Connecting to MELCloud Home');
222
- const GLOBAL_TIMEOUT = 90000;
222
+ const GLOBAL_TIMEOUT = 120000;
223
223
 
224
224
  let browser;
225
225
  try {