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

pull/10076/head
tsuereth 7 months ago committed by GitHub
parent 8a5c0ffd18
commit 69ad0caf40
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -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
};

Loading…
Cancel
Save