Continued to improve logging and fixed a few bugs introduced by refactor

This commit is contained in:
2026-01-24 23:14:16 -07:00
parent 9e324f14a7
commit 4fc8b4799d
4 changed files with 37 additions and 42 deletions

View File

@@ -22,9 +22,5 @@ public class SeriesInfo
/// <summary>
/// Gets or sets seasons.
/// </summary>
#pragma warning disable CA2227 // Collection properties should be read only
#pragma warning disable CA1002 // Do not expose generic lists
public List<string> Seasons { get; set; } = [];
#pragma warning restore CA1002 // Do not expose generic lists
#pragma warning restore CA2227 // Collection properties should be read only
public IEnumerable<string> Seasons { get; set; } = [];
}