mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2026-05-08 05:20:12 -05:00
FF-1493: Added ability to save images to the file log
This commit is contained in:
@@ -165,7 +165,7 @@ public class FFprobeTimeSpanConverter : JsonConverter<TimeSpan>
|
||||
{
|
||||
public override TimeSpan Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options)
|
||||
{
|
||||
string stringValue = reader.GetString();
|
||||
var stringValue = reader.GetString() ?? string.Empty;
|
||||
if (double.TryParse(stringValue, out double seconds) == false)
|
||||
return default;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user