First issue with Owncloud client #110

Merged
pierre merged 1 commits from fix-owncloud into master 2023-04-28 09:39:54 +00:00

View File

@ -272,7 +272,7 @@ pub async fn token(
}
// Basic authentication
(None, None, Some(v)) => {
(_, None, Some(v)) => {
let token = match v.to_str().unwrap_or_default().strip_prefix("Basic ") {
None => {
return Ok(error_response(
@ -309,7 +309,7 @@ pub async fn token(
return Ok(error_response(
&query,
"invalid_request",
"Authentication method unknown!",
"Client authentication method on token endpoint unsupported!",
));
}
};