fix: Bosh configuration when bosh URI contains IP address.

This commit is contained in:
Дамян Минков 2022-05-18 08:08:47 -05:00
parent 881ebe731d
commit d0db485c24
1 changed files with 3 additions and 1 deletions

View File

@ -77,7 +77,9 @@ public final class BOSHConfiguration extends ConnectionConfiguration {
}
public URI getURI() throws URISyntaxException {
return new URI((https ? "https://" : "http://") + this.host + ":" + this.port + file);
return new URI((https ? "https://" : "http://")
+ (this.host != null ? this.host : this.hostAddress)
+ ":" + this.port + file);
}
public Map<String, String> getHttpHeaders() {