From f44e6ab75fb044ff130e48409ea570bf572895c0 Mon Sep 17 00:00:00 2001 From: Georges Varouchas Date: Fri, 23 Jul 2021 20:36:49 +0200 Subject: [PATCH] bugfix in AuthService.LogInSsoAsync (#1474) (#1475) add missing parameter in call to LogInHelperAsync --- src/Core/Services/AuthService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Core/Services/AuthService.cs b/src/Core/Services/AuthService.cs index 7a34110ed..95ba58e6c 100644 --- a/src/Core/Services/AuthService.cs +++ b/src/Core/Services/AuthService.cs @@ -131,7 +131,7 @@ namespace Bit.Core.Services public async Task 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 LogInTwoFactorAsync(TwoFactorProviderType twoFactorProvider, string twoFactorToken,