Skip to content

Commit

Permalink
Revert "Removes null param from ThingStatusInfo constructor call"
Browse files Browse the repository at this point in the history
This reverts commit 6fbbd97.

Signed-off-by: Thomas Lauterbach <thomas@pop-os.amfthome.org>
  • Loading branch information
Thomas Lauterbach committed Feb 19, 2025
1 parent 6fbbd97 commit 9491687
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ public ThingStatusInfo getBridgeStatus() {
if (b != null) {
return b.getStatusInfo();
} else {
return new ThingStatusInfo(ThingStatus.OFFLINE, ThingStatusDetail.BRIDGE_OFFLINE);
return new ThingStatusInfo(ThingStatus.OFFLINE, ThingStatusDetail.BRIDGE_OFFLINE, null);
}
}

Expand Down

0 comments on commit 9491687

Please sign in to comment.