1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-07-04 11:07:59 +02:00

Fixed: Avoid NullRef for Movie Resources with a null tags field

This commit is contained in:
tsuereth 2024-06-10 03:37:57 -07:00 committed by GitHub
parent 8a5c0ffd18
commit 69ad0caf40
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -198,7 +198,7 @@ public static Movie ToModel(this MovieResource resource)
RootFolderPath = resource.RootFolderPath,
Tags = resource.Tags,
Tags = resource.Tags ?? new HashSet<int>(),
Added = resource.Added,
AddOptions = resource.AddOptions
};