[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 {
return new URI((https ? "https://" : "http://")
+ (this.host != null ? this.host : this.hostAddress)
+ ":" + this.port + file);
String uri = https ? "https://" : "http://" + getHostString() + ":" + this.port + file;
return new URI(uri);
}
public Map<String, String> getHttpHeaders() {