node-red-contrib-knx-ultimate 2.1.2 → 2.1.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/CHANGELOG.md +4 -0
- package/nodes/utils/hueUtils.js +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/nodes/utils/hueUtils.js
CHANGED
|
@@ -54,8 +54,8 @@ class classHUE extends EventEmitter {
|
|
|
54
54
|
for (let index = 0; index < events.length; index++) {
|
|
55
55
|
const oEvento = events[index]
|
|
56
56
|
if (oEvento.type === 'update') {
|
|
57
|
-
for (let
|
|
58
|
-
const element = oEvento.data[
|
|
57
|
+
for (let i = 0; i < oEvento.data.length; i++) {
|
|
58
|
+
const element = oEvento.data[i]
|
|
59
59
|
this.emit('event', element)
|
|
60
60
|
}
|
|
61
61
|
}
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"engines": {
|
|
4
4
|
"node": ">=14.0.0"
|
|
5
5
|
},
|
|
6
|
-
"version": "2.1.
|
|
6
|
+
"version": "2.1.3",
|
|
7
7
|
"description": "Control your KNX intallation via Node-Red! Single Node KNX IN/OUT with optional ETS group address importer. Easy to use and highly configurable. With integrated Philips HUE devices handling.",
|
|
8
8
|
"dependencies": {
|
|
9
9
|
"mkdirp": "1.0.4",
|