We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21824a6 commit dac1ee3Copy full SHA for dac1ee3
src/client.rs
@@ -319,7 +319,7 @@ impl<T: Read + Write + Unpin + fmt::Debug> Client<T> {
319
let challenge = if let Some(text) = information {
320
ok_or_unauth_client_err!(
321
base64::decode(text).map_err(|e| Error::Parse(
322
- ParseError::Authentication(text.to_string(), Some(e))
+ ParseError::Authentication((*text).to_string(), Some(e))
323
)),
324
self
325
)
0 commit comments