Fixed: Validation when testing indexers, import lists, connections and download clients

Fixes #1612

Co-Authored-By: Mark McDowall <markus101@users.noreply.github.com>
This commit is contained in:
Qstick
2022-11-27 19:10:12 -06:00
parent c5c2b94b9a
commit 599f52e72f
7 changed files with 11 additions and 60 deletions
@@ -12,15 +12,5 @@ namespace Readarr.Api.V1.Notifications
: base(notificationFactory, "notification", ResourceMapper)
{
}
protected override void Validate(NotificationDefinition definition, bool includeWarnings)
{
if (!definition.Enable)
{
return;
}
base.Validate(definition, includeWarnings);
}
}
}