homebridge-multiple-switch 1.7.0-beta.7 → 1.7.0-beta.8
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/CHANGELOG.md +5 -0
- package/index.js +1 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/index.js
CHANGED
|
@@ -145,9 +145,7 @@ class MultipleSwitchPlatform {
|
|
|
145
145
|
|
|
146
146
|
services.set(subtype, service);
|
|
147
147
|
|
|
148
|
-
|
|
149
|
-
accessory.context.switchStates[subtype] = sw.defaultState || false;
|
|
150
|
-
}
|
|
148
|
+
accessory.context.switchStates[subtype] = sw.defaultState || false;
|
|
151
149
|
});
|
|
152
150
|
|
|
153
151
|
// Clean up states for removed switches
|
package/package.json
CHANGED