Merge pull request #526 from damencho/fix-bosh-ip-address-4.4

fix: Bosh configuration when bosh URI contains IP address.
This commit is contained in:
Florian Schmaus 2022-05-18 16:50:16 +02:00 committed by GitHub
commit 9b6e209b5f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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() {