Skip to content
This repository has been archived by the owner on Jul 31, 2024. It is now read-only.

Commit

Permalink
Merge pull request #4948 from IdentityServer/features/fix_incorrect_r…
Browse files Browse the repository at this point in the history
…esources_param_to_idtoken_claims

DefaultClaimsService.GetIdentityTokenClaimsAsync uses wrong Resource parameter for ProfileData
  • Loading branch information
brockallen committed Oct 7, 2020
2 parents 60f406e + 46013fe commit 7cf6192
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public virtual async Task<IEnumerable<Claim>> GetIdentityTokenClaimsAsync(Claims
IdentityServerConstants.ProfileDataCallers.ClaimsProviderIdentityToken,
additionalClaimTypes)
{
RequestedResources = request.ValidatedResources,
RequestedResources = resources,
ValidatedRequest = request
};

Expand Down

0 comments on commit 7cf6192

Please sign in to comment.