diff --git a/src/Microsoft.AspNetCore.Identity/SignInManager.cs b/src/Microsoft.AspNetCore.Identity/SignInManager.cs index f959ea22c2..8c278eb972 100644 --- a/src/Microsoft.AspNetCore.Identity/SignInManager.cs +++ b/src/Microsoft.AspNetCore.Identity/SignInManager.cs @@ -301,10 +301,6 @@ namespace Microsoft.AspNetCore.Identity return error; } - if (await IsLockedOut(user)) - { - return await LockedOut(user); - } if (await UserManager.CheckPasswordAsync(user, password)) { await ResetLockout(user);