Merge pull request #1144 from yiguous/patch-1

fix escaped auth
This commit is contained in:
Toby 2024-07-10 13:16:43 -07:00 committed by GitHub
commit b563f3981f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -393,7 +393,11 @@ func (c *clientConfig) parseURI() bool {
return false
}
if u.User != nil {
c.Auth = u.User.String()
auth, err := url.QueryUnescape(u.User.String())
if err != nil {
return false
}
c.Auth = auth
}
c.Server = u.Host
q := u.Query()