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