Skip to content

Commit 7e6d5f3

Browse files
lsiepelkaikreuzer
authored andcommitted
Fix domain (openhab#18289)
Signed-off-by: Leo Siepel <[email protected]>
1 parent c9e1b69 commit 7e6d5f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bundles/org.openhab.binding.xmppclient/src/main/java/org/openhab/binding/xmppclient/internal/handler/XMPPClientConfiguration.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@ public class XMPPClientConfiguration {
3232

3333
public boolean isValid() {
3434
String host = this.host;
35-
return !(host == null || host.isBlank());
35+
return !((host == null || host.isBlank()) && domain.isBlank());
3636
}
3737
}

0 commit comments

Comments
 (0)