Skip to content

Commit d3b3db3

Browse files
authored
Fix domain (openhab#18289)
Signed-off-by: Leo Siepel <[email protected]>
1 parent 32b0a40 commit d3b3db3

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
@@ -33,6 +33,6 @@ public class XMPPClientConfiguration {
3333

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

0 commit comments

Comments
 (0)