mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-10-03 09:09:42 +02: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