Browse Source
Fix PreSignInCheck call in CallPreSignInCheckAsync
pull/24278/head
maliming
2 months ago
No known key found for this signature in database
GPG Key ID: A646B9CB645ECEA4
1 changed files with
1 additions and
1 deletions
-
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) |
|
|
|
|