We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a5e7bd commit 6245b4eCopy full SHA for 6245b4e
src/Thinktecture.Runtime.Extensions.Json/Text/Json/Serialization/ValueObjectJsonConverter.cs
@@ -26,7 +26,7 @@ public ValueObjectJsonConverter(JsonSerializerOptions options)
26
{
27
ArgumentNullException.ThrowIfNull(options);
28
29
- _keyConverter = (JsonConverter<TKey>)JsonSerializerOptionsExtensions.GetCustomValueObjectMemberConverter(options, typeof(TKey));
+ _keyConverter = (JsonConverter<TKey>)options.GetCustomValueObjectMemberConverter(typeof(TKey));
30
}
31
32
/// <inheritdoc />
0 commit comments