Remove Newznab & Torznab Anime Categories Setting

This commit is contained in:
Qstick
2017-09-22 22:27:26 -04:00
parent 2938bfee2c
commit 7c3446baab
2 changed files with 6 additions and 10 deletions
@@ -31,9 +31,9 @@ namespace NzbDrone.Core.Indexers.Torznab
{
Custom(newznab =>
{
if (newznab.Categories.Empty() && newznab.AnimeCategories.Empty())
if (newznab.Categories.Empty())
{
return new ValidationFailure("", "Either 'Categories' or 'Anime Categories' must be provided");
return new ValidationFailure("", "'Categories' must be provided");
}
return null;
@@ -55,4 +55,4 @@ namespace NzbDrone.Core.Indexers.Torznab
return new NzbDroneValidationResult(Validator.Validate(this));
}
}
}
}