[loxone] fix representation property (#10086)

Signed-off-by: Jan N. Klug <jan.n.klug@rub.de>
This commit is contained in:
J-N-K 2021-02-07 19:44:39 +01:00 committed by GitHub
parent ca359153d8
commit 7269cbfbf5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -71,7 +71,7 @@ public class LxDiscoveryParticipant implements UpnpDiscoveryParticipant {
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;
}