diff --git a/src/Security/Authentication/OpenIdConnect/src/OpenIdConnectHandler.cs b/src/Security/Authentication/OpenIdConnect/src/OpenIdConnectHandler.cs index e1dc65df66..f4767f1e87 100644 --- a/src/Security/Authentication/OpenIdConnect/src/OpenIdConnectHandler.cs +++ b/src/Security/Authentication/OpenIdConnect/src/OpenIdConnectHandler.cs @@ -910,7 +910,7 @@ namespace Microsoft.AspNetCore.Authentication.OpenIdConnect foreach (var action in Options.ClaimActions) { - action.Run(user.RootElement, identity, ClaimsIssuer); + action.Run(updatedUser.RootElement, identity, ClaimsIssuer); } } }