node-red-contrib-knx-ultimate 2.3.1 → 2.3.2

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 CHANGED
@@ -6,7 +6,7 @@
6
6
 
7
7
  # CHANGELOG
8
8
 
9
- **Version 2.3.1** - Jan 2024<br/>
9
+ **Version 2.3.2** - Jan 2024<br/>
10
10
  - HUE Light: minor fixes.
11
11
 
12
12
  **Version 2.3.0** - Jan 2024<br/>
@@ -175,7 +175,7 @@
175
175
  if ($("#node-input-hueDevice").val() === '') {
176
176
  $("#tabs").hide();
177
177
  } else {
178
- $.getJSON("knxUltimateGetLightObject?id=" + $("#node-input-hueDevice").val().split("#")[0] + " &" + { _: new Date().getTime() }, (data) => {
178
+ $.getJSON("knxUltimateGetLightObject?id=" + $("#node-input-hueDevice").val().split("#")[0] + "&" + { _: new Date().getTime() }, (data) => {
179
179
  let oLight = data;
180
180
  // Check if grouped, to hide/show the "Get current" buttons
181
181
  if (oLight.type === "grouped_light") {
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "engines": {
4
4
  "node": ">=16.0.0"
5
5
  },
6
- "version": "2.3.1",
6
+ "version": "2.3.2",
7
7
  "description": "Control your KNX intallation via Node-Red! A bunch of KNX nodes, with integrated Philips HUE control and ETS group address importer. Easy to use and highly configurable.",
8
8
  "dependencies": {
9
9
  "binary-parser": "2.2.1",