1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-10-05 15:47:20 +02:00

Fixed: Default empty Tags for Collections

Fixes #8872
This commit is contained in:
Qstick 2023-07-23 12:33:04 -05:00
parent e612d8c485
commit 622162c5f6

View File

@ -9,6 +9,7 @@ public class MovieCollection : ModelBase
public MovieCollection()
{
Images = new List<MediaCover.MediaCover>();
Tags = new HashSet<int>();
}
public string Title { get; set; }