From 838e4e582ad6f0676c8d3f72a6ceb86ad6377bfc Mon Sep 17 00:00:00 2001 From: Qstick Date: Tue, 25 May 2021 21:47:01 -0400 Subject: [PATCH] Fixed: Default list for IndexerFlags causing null ref --- src/NzbDrone.Core/Parser/Model/ReleaseInfo.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/NzbDrone.Core/Parser/Model/ReleaseInfo.cs b/src/NzbDrone.Core/Parser/Model/ReleaseInfo.cs index 8878cfab8..f905b4119 100644 --- a/src/NzbDrone.Core/Parser/Model/ReleaseInfo.cs +++ b/src/NzbDrone.Core/Parser/Model/ReleaseInfo.cs @@ -8,6 +8,11 @@ namespace NzbDrone.Core.Parser.Model { public class ReleaseInfo { + public ReleaseInfo() + { + IndexerFlags = new List(); + } + public string Guid { get; set; } public string Title { get; set; } public string Description { get; set; }