mirror of
https://github.com/bitwarden/mobile
synced 2025-12-10 13:23:39 +00:00
add missing parameter in call to LogInHelperAsync
This commit is contained in:
committed by
GitHub
parent
10a718b0c7
commit
f44e6ab75f
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user