mirror of
https://github.com/Radarr/Radarr.git
synced 2025-04-24 06:27:08 -04:00
Fixed: Avoid NullRef for Movie Resources with a null tags field
This commit is contained in:
parent
8a5c0ffd18
commit
69ad0caf40
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue