From 38ce17fc5309c996f94655ed2ccd40646ba0767f Mon Sep 17 00:00:00 2001 From: ta264 Date: Tue, 25 Aug 2020 22:35:14 +0100 Subject: [PATCH] Fixed: Trigger search when new book added via import list --- src/NzbDrone.Core/ImportLists/ImportListSyncService.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/NzbDrone.Core/ImportLists/ImportListSyncService.cs b/src/NzbDrone.Core/ImportLists/ImportListSyncService.cs index ac0f30d71..c359b5688 100644 --- a/src/NzbDrone.Core/ImportLists/ImportListSyncService.cs +++ b/src/NzbDrone.Core/ImportLists/ImportListSyncService.cs @@ -229,6 +229,10 @@ namespace NzbDrone.Core.ImportLists Monitor = monitored ? MonitorTypes.All : MonitorTypes.None } }, + AddOptions = new AddBookOptions + { + SearchForNewBook = monitored + } }; if (importList.ShouldMonitor == ImportListMonitorType.SpecificBook)