Skip to content

Commit e381b31

Browse files
committed
Build fix
Signed-off-by: Leo Siepel <[email protected]>
1 parent 3d8cfae commit e381b31

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bundles/org.openhab.binding.luxom/src/main/java/org/openhab/binding/luxom/internal/handler/LuxomBridgeHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ public void startProcessing() {
139139

140140
updateStatus(ThingStatus.ONLINE);
141141

142-
messageSender = new Thread(this::sendCommandsThread, "OH-binding-" + getBridgeUID() + "-Sender");
142+
messageSender = new Thread(this::sendCommandsThread, "OH-binding-" + getBridge().getBridgeUID() + "-Sender");
143143
messageSender.start();
144144

145145
logger.debug("Starting heartbeat job with interval {} (seconds)", HEARTBEAT_INTERVAL_SECONDS);

0 commit comments

Comments
 (0)