mirror of
https://github.com/Prowlarr/Prowlarr
synced 2026-04-17 02:10:48 +02:00
Fixed: Default list for IndexerFlags causing null ref
This commit is contained in:
parent
dd66d7845c
commit
838e4e582a
1 changed files with 5 additions and 0 deletions
|
|
@ -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; }
|
||||
|
|
|
|||
Loading…
Reference in a new issue