mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-18 14:34:23 +01:00
TimeSpan JSON Converter: Parse strings (#6012)
Something I came across while working in the app: Without this, the [TimeSpan default values of the StoreBlob](https://github.com/btcpayserver/btcpayserver/blob/master/BTCPayServer/Data/StoreBlob.cs#L84) cannot be parsed and don't get applied properly.
This commit is contained in:
@@ -58,6 +58,8 @@ namespace BTCPayServer.Client.JsonConverters
|
|||||||
return null;
|
return null;
|
||||||
return TimeSpan.Zero;
|
return TimeSpan.Zero;
|
||||||
}
|
}
|
||||||
|
if (reader.TokenType == JsonToken.String && TimeSpan.TryParse(reader.Value?.ToString(), out var res))
|
||||||
|
return res;
|
||||||
if (reader.TokenType != JsonToken.Integer)
|
if (reader.TokenType != JsonToken.Integer)
|
||||||
throw new JsonObjectException("Invalid timespan, expected integer", reader);
|
throw new JsonObjectException("Invalid timespan, expected integer", reader);
|
||||||
return ToTimespan((long)reader.Value);
|
return ToTimespan((long)reader.Value);
|
||||||
|
|||||||
Reference in New Issue
Block a user