pull/11970/merge
nom3ad 2 days ago committed by GitHub
commit 3e55a9c96d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -36,6 +36,9 @@ func (d *Dialer) Dial(ctx context.Context) (*ClientConn, error) {
wsScheme = "ws"
host = net.JoinHostPort(host, d.HTTPPort)
}
if d.HTTPSPort != "" && d.HTTPSPort != "443" {
host = net.JoinHostPort(host, d.HTTPSPort)
}
wsURL := &url.URL{
Scheme: wsScheme,
Host: host,

Loading…
Cancel
Save