remove JsonIgnore from FFProbeAnalysis.ErrorData #589

This commit is contained in:
tqk2811 2025-10-18 17:15:57 +07:00
parent b83e7a4fff
commit 07bfc46178

View file

@ -11,7 +11,7 @@ public class FFProbeAnalysis
[JsonPropertyName("chapters")] public List<Chapter> Chapters { get; set; } = null!;
[JsonIgnore] public IReadOnlyList<string> ErrorData { get; set; } = new List<string>();
public IReadOnlyList<string> ErrorData { get; set; } = new List<string>();
}
public class FFProbeStream : ITagsContainer, IDispositionContainer