Skip to content

Commit

Permalink
Fix account bridge staying offline (#16520)
Browse files Browse the repository at this point in the history
Fixes #16518

Signed-off-by: Jacob Laursen <jacob-github@vindvejr.dk>
  • Loading branch information
jlaur committed Mar 15, 2024
1 parent 2f079bf commit 696306d
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -340,6 +340,7 @@ public synchronized <T> T executeUri(URI uri, HttpMethod method, Class<T> clazz,
logger.trace(" -returned: code {} body {}", statusCode, responseBody);

if (statusCode == Code.OK) {
updateStatus(ThingStatus.ONLINE);
return deserializer.deserialize(clazz, responseBody);
}

Expand Down

0 comments on commit 696306d

Please sign in to comment.