Skip to content

Commit

Permalink
Update OpenIdConnectConfigurationSerializer.cs (#2550)
Browse files Browse the repository at this point in the history
  • Loading branch information
martinb69 committed Apr 5, 2024
1 parent ceeb23c commit 84fb893
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -275,7 +275,7 @@ public static OpenIdConnectConfiguration Read(ref Utf8JsonReader reader, OpenIdC
JsonPrimitives.ReadStrings(ref reader, config.UserInfoEndpointEncryptionEncValuesSupported, MetadataName.UserInfoEncryptionEncValuesSupported, ClassName, true);

else if (reader.ValueTextEquals(Utf8Bytes.UserInfoEndpoint))
config.UserInfoEndpoint = JsonPrimitives.ReadString(ref reader, MetadataName.ScopesSupported, ClassName, true);
config.UserInfoEndpoint = JsonPrimitives.ReadString(ref reader, MetadataName.UserInfoEndpoint, ClassName, true);

else if (reader.ValueTextEquals(Utf8Bytes.UserInfoSigningAlgValuesSupported))
JsonPrimitives.ReadStrings(ref reader, config.UserInfoEndpointSigningAlgValuesSupported, MetadataName.UserInfoSigningAlgValuesSupported, ClassName, true);
Expand Down

0 comments on commit 84fb893

Please sign in to comment.