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 @@ namespace Radarr.Api.V3.Movies
RootFolderPath = resource.RootFolderPath,
Tags = resource.Tags,
Tags = resource.Tags ?? new HashSet<int>(),
Added = resource.Added,
AddOptions = resource.AddOptions
};