Skip to content

Commit

Permalink
bugfix in AuthService.LogInSsoAsync (#1474) (#1475)
Browse files Browse the repository at this point in the history
add missing parameter in call to LogInHelperAsync
  • Loading branch information
LeGEC committed Jul 23, 2021
1 parent 10a718b commit f44e6ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Core/Services/AuthService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ public async Task<AuthResult> LogInAsync(string email, string masterPassword)
public async Task<AuthResult> LogInSsoAsync(string code, string codeVerifier, string redirectUrl)
{
SelectedTwoFactorProviderType = null;
return await LogInHelperAsync(null, null, code, codeVerifier, redirectUrl, null, null, null, null);
return await LogInHelperAsync(null, null, null, code, codeVerifier, redirectUrl, null, null, null, null);
}

public Task<AuthResult> LogInTwoFactorAsync(TwoFactorProviderType twoFactorProvider, string twoFactorToken,
Expand Down

0 comments on commit f44e6ab

Please sign in to comment.