1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-10 13:23:39 +00:00

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

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,