Attach to debugger is a lot more reliable.

Added system/config ui
rss job only runs enabled jobs
fixed wrong mappings for indexers in settingscontroller
This commit is contained in:
kay.one 2011-04-22 10:09:06 -07:00
commit fd32a04d45
9 changed files with 89 additions and 41 deletions

View file

@ -30,7 +30,7 @@ namespace NzbDrone.Core.Providers.Jobs
public void Start(ProgressNotification notification, int targetId)
{
foreach (var indexer in _indexers)
foreach (var indexer in _indexers.Where(i => i.Settings.Enable))
{
indexer.Fetch();
}