mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-19 02:22:05 +01:00
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:
commit
9b6e209b5f
1 changed files with 3 additions and 1 deletions
|
@ -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 a new issue