Fixed: Validation when testing indexers, connections and download clients

Co-Authored-By: Mark McDowall <markus101@users.noreply.github.com>
This commit is contained in:
Qstick
2022-03-28 19:55:35 -05:00
parent 69de6d18eb
commit 135efe6d94
5 changed files with 10 additions and 39 deletions
@@ -10,15 +10,5 @@ namespace Prowlarr.Api.V1.Indexers
: base(indexerFactory, "indexer", resourceMapper)
{
}
protected override void Validate(IndexerDefinition definition, bool includeWarnings)
{
if (!definition.Enable)
{
return;
}
base.Validate(definition, includeWarnings);
}
}
}