mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2026-01-20 15:14:57 +01:00
Fix syntax error in oauth2_callback function by adding missing comma
This commit is contained in:
parent
7a154975cc
commit
1fc185c196
1 changed files with 1 additions and 1 deletions
|
|
@ -418,7 +418,7 @@ struct OAuth2CallbackParams {
|
|||
async fn oauth2_callback(
|
||||
_token: AdminToken,
|
||||
params: OAuth2CallbackParams,
|
||||
conn: DbConn
|
||||
conn: DbConn,
|
||||
) -> Result<Html<String>, Error> {
|
||||
// Check for errors from OAuth2 provider
|
||||
if let Some(error) = params.error {
|
||||
|
|
|
|||
Loading…
Reference in a new issue