From 69c7d526bc6d08c93e96ac21134ea4355a617694 Mon Sep 17 00:00:00 2001 From: Qstick Date: Sun, 18 Dec 2022 10:18:40 -0600 Subject: [PATCH] Fixed: Don't enforce minimum on single list fetch (cherry picked from commit 62354dfac83e36f2d6a8cf24fc96fa25392bc438) --- src/NzbDrone.Core/ImportLists/FetchAndParseImportListService.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/NzbDrone.Core/ImportLists/FetchAndParseImportListService.cs b/src/NzbDrone.Core/ImportLists/FetchAndParseImportListService.cs index c6ad62077..fc1dbd3c8 100644 --- a/src/NzbDrone.Core/ImportLists/FetchAndParseImportListService.cs +++ b/src/NzbDrone.Core/ImportLists/FetchAndParseImportListService.cs @@ -106,6 +106,8 @@ namespace NzbDrone.Core.ImportLists result.AddRange(importListReports); } + + _importListStatusService.UpdateListSyncStatus(importList.Definition.Id); } catch (Exception e) {