fix escaped auth

This commit is contained in:
yiguous 2024-07-05 18:34:54 +08:00 committed by GitHub
parent 458ee1386c
commit a7ecd08046
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()