Skip to content

Commit

Permalink
Merge pull request #66 from WasiqB/issue-62
Browse files Browse the repository at this point in the history
Updated for issue #62.
  • Loading branch information
mfaisalkhatri authored Oct 2, 2018
2 parents 4c501cc + 3c6008d commit eda030b
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -227,8 +227,10 @@ private String getUrl () {
.append ("@")
.append (this.setting.getHost ());
} else {
sb.append (this.setting.getHost ())
.append (":")
sb.append (this.setting.getHost ());
}
if (this.setting.getPort () > 0) {
sb.append (":")
.append (this.setting.getPort ());
}
return sb.toString ();
Expand Down

0 comments on commit eda030b

Please sign in to comment.