mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-16 21:35:04 -04:00
Fixed: (API) Allow new indexer request not to contain empty tags array
This commit is contained in:
@@ -61,7 +61,7 @@ namespace Prowlarr.Api.V1
|
||||
Implementation = resource.Implementation,
|
||||
ConfigContract = resource.ConfigContract,
|
||||
Message = resource.Message,
|
||||
Tags = resource.Tags
|
||||
Tags = resource.Tags ?? new HashSet<int>()
|
||||
};
|
||||
|
||||
var configContract = ReflectionExtensions.CoreAssembly.FindTypeByName(definition.ConfigContract);
|
||||
|
||||
Reference in New Issue
Block a user