mirror of
https://github.com/Radarr/Radarr
synced 2025-12-06 16:32:36 +01:00
Fixed: Fetch import lists without depending on Automatic Add
This commit is contained in:
parent
35c4538288
commit
e78bc34514
1 changed files with 2 additions and 2 deletions
|
|
@ -43,9 +43,9 @@ public ImportListSyncService(IImportListFactory importListFactory,
|
||||||
|
|
||||||
private void SyncAll()
|
private void SyncAll()
|
||||||
{
|
{
|
||||||
if (_importListFactory.Enabled().Where(a => ((ImportListDefinition)a.Definition).EnableAuto).Empty())
|
if (_importListFactory.Enabled().Empty())
|
||||||
{
|
{
|
||||||
_logger.Debug("No import lists with automatic add enabled, skipping sync and cleaning");
|
_logger.Debug("No enabled import lists, skipping sync and cleaning");
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue