Browse Source

Improve message

Co-authored-by: Copilot Autofix powered by AI <[email protected]>
pull/251/head
Dominik 3 weeks ago
committed by GitHub
parent
commit
bc47ff0e96
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      src/http.rs

2
src/http.rs

@ -239,7 +239,7 @@ impl HttpConnection {
// We accept anything that does not match the `Digest` scheme as
// "auth method is not supported" and surface a clean error.
if !is_digest_scheme(auth_data) {
return Err("Bad credentials".into());
return Err("Proxy authentication method is not supported; only Digest is supported".into());
}
// Analize challenge params

Loading…
Cancel
Save