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.
- package/lib/Platform.js +1 -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) {
|
|
563
|
+
} catch (error) {}
|
|
565
564
|
delete this._accessoryDelegates[id]
|
|
566
565
|
delete this._accessories[id]
|
|
567
566
|
}
|