Merge pull request #526 from damencho/fix-bosh-ip-address-4.4
fix: Bosh configuration when bosh URI contains IP address.bumpPGPainless
commit
9b6e209b5f
|
@ -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() {
|
||||
|
|
Loading…
Reference in New Issue