mirror of
https://github.com/bitwarden/android.git
synced 2024-12-24 01:48:25 +03:00
add missing parameter in call to LogInHelperAsync
This commit is contained in:
parent
10a718b0c7
commit
f44e6ab75f
1 changed files with 1 additions and 1 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue