Skip to content

Commit

Permalink
Fix JsonPropertyName of OpenIdConnectConfiguration.ClaimTypesSupported
Browse files Browse the repository at this point in the history
  • Loading branch information
joegoldman2 authored and brentschmaltz committed Nov 6, 2023
1 parent 4b924ed commit 4d850ee
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ public OpenIdConnectConfiguration(string json)
/// <summary>
/// Gets the collection of 'claim_types_supported'
/// </summary>
[JsonPropertyName(OpenIdProviderMetadataNames.ClaimsSupported)]
[JsonPropertyName(OpenIdProviderMetadataNames.ClaimTypesSupported)]
public ICollection<string> ClaimTypesSupported =>
_claimTypesSupported ??
Interlocked.CompareExchange(ref _claimTypesSupported, new Collection<string>(), null) ??
Expand Down

0 comments on commit 4d850ee

Please sign in to comment.