Fixed: Default list for IndexerFlags causing null ref

This commit is contained in:
Qstick
2021-05-25 21:47:01 -04:00
parent dd66d7845c
commit 838e4e582a

View File

@@ -8,6 +8,11 @@ namespace NzbDrone.Core.Parser.Model
{
public class ReleaseInfo
{
public ReleaseInfo()
{
IndexerFlags = new List<IndexerFlag>();
}
public string Guid { get; set; }
public string Title { get; set; }
public string Description { get; set; }