bugfix in AuthService.LogInSsoAsync (#1474) (#1475)

add missing parameter in call to LogInHelperAsync
This commit is contained in:
Georges Varouchas 2021-07-23 20:36:49 +02:00 committed by GitHub
parent 10a718b0c7
commit f44e6ab75f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -131,7 +131,7 @@ namespace Bit.Core.Services
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,