diff --git a/modules/identity/src/Volo.Abp.Identity.AspNetCore/Volo/Abp/Identity/AspNetCore/AbpSignInManager.cs b/modules/identity/src/Volo.Abp.Identity.AspNetCore/Volo/Abp/Identity/AspNetCore/AbpSignInManager.cs index a68849dc28..d922356397 100644 --- a/modules/identity/src/Volo.Abp.Identity.AspNetCore/Volo/Abp/Identity/AspNetCore/AbpSignInManager.cs +++ b/modules/identity/src/Volo.Abp.Identity.AspNetCore/Volo/Abp/Identity/AspNetCore/AbpSignInManager.cs @@ -96,7 +96,7 @@ public class AbpSignInManager : SignInManager /// Null if the user should be allowed to sign in, otherwise the SignInResult why they should be denied. public virtual async Task CallPreSignInCheckAsync(IdentityUser user) { - return await base.PreSignInCheck(user); + return await PreSignInCheck(user); } protected override async Task PreSignInCheck(IdentityUser user)