indexer specific setting validation

This commit is contained in:
kay.one 2013-08-22 01:08:43 -07:00
commit e4fc0c57b3
11 changed files with 93 additions and 26 deletions

View file

@ -53,7 +53,7 @@ namespace NzbDrone.Core.Indexers
public List<IIndexer> GetAvailableIndexers()
{
return All().Where(c => c.Enable && c.Settings.IsValid).Select(c => c.Instance).ToList();
return All().Where(c => c.Enable && c.Settings.Validate().IsValid).Select(c => c.Instance).ToList();
}
public Indexer Get(int id)