Skip to content

Commit

Permalink
Fixed an issue when Subcontrols of a Lighting Controller had malforme…
Browse files Browse the repository at this point in the history
…d name when Miniserver's configuration was changed in runtime.
  • Loading branch information
ppieczul committed Jul 27, 2017
1 parent fbd6ac6 commit dd6b831
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,13 @@ Bundle-ManifestVersion: 2
Bundle-Name: Loxone Binding
Bundle-SymbolicName: org.openhab.binding.loxone;singleton:=true
Bundle-Vendor: openHAB
Bundle-Version: 2.2.0.1
Bundle-Version: 2.2.0.2
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
Bundle-ClassPath: .
Import-Package:
com.google.common.collect,
com.google.gson,
com.google.gson.annotations,
org.apache.commons.codec,
org.apache.commons.codec.binary,
org.eclipse.jetty.http,
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<groupId>org.openhab.binding</groupId>
<artifactId>org.openhab.binding.loxone</artifactId>
<version>2.2.0-1</version>
<version>2.2.0-2</version>

<name>Loxone Binding</name>
<packaging>eclipse-plugin</packaging>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ void update(LxJsonControl json, LxContainer room, LxCategory category) {
subControl.cat = json.cat;
LxUuid uuid = new LxUuid(subControl.uuidAction);
if (subControls.containsKey(uuid)) {
subControls.get(uuid).update(json, room, category);
subControls.get(uuid).update(subControl, room, category);
} else {
LxControl control = LxControl.createControl(socketClient, uuid, subControl, room, category);
if (control != null) {
Expand Down

0 comments on commit dd6b831

Please sign in to comment.