homebridge-lib 5.1.24-2 → 5.1.24-3

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.
Files changed (2) hide show
  1. package/lib/Platform.js +1 -2
  2. package/package.json +1 -1
package/lib/Platform.js CHANGED
@@ -512,7 +512,6 @@ class Platform extends homebridgeLib.Delegate {
512
512
  )
513
513
  }
514
514
  } catch (error) {
515
- this.warn(error)
516
515
  try {
517
516
  // Make sure the accessory won't be persisted, since it will fail
518
517
  // to be exposed again on restore, causing `configureAccessory()`
@@ -561,7 +560,7 @@ class Platform extends homebridgeLib.Delegate {
561
560
  this._homebridge.unregisterPlatformAccessories(
562
561
  this._pluginName, this._platformName, [accessory]
563
562
  )
564
- } catch (error) { this.warn(error) }
563
+ } catch (error) {}
565
564
  delete this._accessoryDelegates[id]
566
565
  delete this._accessories[id]
567
566
  }
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "Library for homebridge plugins",
4
4
  "author": "Erik Baauw",
5
5
  "license": "Apache-2.0",
6
- "version": "5.1.24-2",
6
+ "version": "5.1.24-3",
7
7
  "keywords": [
8
8
  "homekit",
9
9
  "homebridge"