[bosh] Use ConnectionConfiguration.getHostString() in BOSHConfiguration

This commit is contained in:
Florian Schmaus 2022-05-18 21:45:32 +02:00
parent 00bcbff5ee
commit aa441d743c
1 changed files with 2 additions and 3 deletions

View File

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