mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-30 19:50:15 -07:00
fixed indexer setting load/reload.
This commit is contained in:
parent
1465fbf499
commit
2eb3ead230
21 changed files with 160 additions and 149 deletions
|
@ -38,7 +38,7 @@ namespace NzbDrone.Core.Indexers
|
|||
public List<IIndexerBase> GetAvailableIndexers()
|
||||
{
|
||||
var enabled = All().Where(c => c.Enable).Select(c => c.Name);
|
||||
var configureIndexers = _indexers.Where(c => c.Settings.IsValid);
|
||||
var configureIndexers = _indexers.Where(c => c.IsConfigured);
|
||||
|
||||
return configureIndexers.Where(c => enabled.Contains(c.Name)).ToList();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue