mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
Fixed: Only Sync Indexers with Sync Enabled
This commit is contained in:
@@ -70,7 +70,8 @@ namespace NzbDrone.Core.Applications
|
||||
|
||||
public void Execute(ApplicationIndexerSyncCommand message)
|
||||
{
|
||||
var enabledApps = _applicationsFactory.GetAvailableProviders();
|
||||
var enabledApps = _applicationsFactory.GetAvailableProviders()
|
||||
.Where(n => ((ApplicationDefinition)n.Definition).Enable);
|
||||
|
||||
foreach (var app in enabledApps)
|
||||
{
|
||||
|
Reference in New Issue
Block a user