diff --git a/source/AspNetIdentity/AspNetIdentityManagerService.cs b/source/AspNetIdentity/AspNetIdentityManagerService.cs index 0dc6b4c..d8ed352 100644 --- a/source/AspNetIdentity/AspNetIdentityManagerService.cs +++ b/source/AspNetIdentity/AspNetIdentityManagerService.cs @@ -539,11 +539,11 @@ public virtual async Task SetUserPropertyAsync(string sub return propResult; } - var result = await userManager.UpdateAsync(user); - if (!result.Succeeded) - { - return new IdentityManagerResult(result.Errors.ToArray()); - } + //var result = await userManager.UpdateAsync(user); + //if (!result.Succeeded) + //{ + // return new IdentityManagerResult(result.Errors.ToArray()); + //} return IdentityManagerResult.Success; }