1
0
mirror of https://github.com/JKorf/CryptoExchange.Net.git synced 2026-08-20 12:53:02 +00:00

Some fixes for caching

This commit is contained in:
JKorf
2024-06-23 22:39:54 +02:00
parent 6f30c72608
commit 1ab1e008fc
4 changed files with 21 additions and 18 deletions
@@ -25,7 +25,7 @@ namespace CryptoExchange.Net.Converters.SystemTextJson
if (string.IsNullOrEmpty(value))
return default;
return (T?)JsonDocument.Parse(value).Deserialize(typeof(T));
return (T?)JsonDocument.Parse(value!).Deserialize(typeof(T));
}
/// <inheritdoc />