Browse Source

Fix PreSignInCheck call in CallPreSignInCheckAsync

pull/24278/head
maliming 2 months ago
parent
commit
ec8d08a57f
No known key found for this signature in database GPG Key ID: A646B9CB645ECEA4
  1. 2
      modules/identity/src/Volo.Abp.Identity.AspNetCore/Volo/Abp/Identity/AspNetCore/AbpSignInManager.cs

2
modules/identity/src/Volo.Abp.Identity.AspNetCore/Volo/Abp/Identity/AspNetCore/AbpSignInManager.cs

@ -96,7 +96,7 @@ public class AbpSignInManager : SignInManager<IdentityUser>
/// <returns>Null if the user should be allowed to sign in, otherwise the SignInResult why they should be denied.</returns>
public virtual async Task<SignInResult?> CallPreSignInCheckAsync(IdentityUser user)
{
return await base.PreSignInCheck(user);
return await PreSignInCheck(user);
}
protected override async Task<SignInResult?> PreSignInCheck(IdentityUser user)

Loading…
Cancel
Save