Skip to content

Commit

Permalink
[loxone] fix representation property (openhab#10086)
Browse files Browse the repository at this point in the history
Signed-off-by: Jan N. Klug <[email protected]>
  • Loading branch information
J-N-K authored Feb 7, 2021
1 parent 5a6546c commit f557539
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public DiscoveryResult createResult(RemoteDevice device) {
properties.put(Thing.PROPERTY_SERIAL_NUMBER, serial);

return DiscoveryResultBuilder.create(uid).withProperties(properties).withLabel(label)
.withRepresentationProperty(serial).build();
.withRepresentationProperty(Thing.PROPERTY_SERIAL_NUMBER).build();
}
return null;
}
Expand Down

0 comments on commit f557539

Please sign in to comment.