From 97ed820575f8a772521d4fe44f7517dea8243349 Mon Sep 17 00:00:00 2001 From: Bogdan Date: Mon, 10 Jul 2023 19:44:11 +0300 Subject: [PATCH] Apply suggestions from code review --- 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 877a5a4de..77a7617ac 100644 --- a/src/NzbDrone.Core/ImportLists/FetchAndParseImportListService.cs +++ b/src/NzbDrone.Core/ImportLists/FetchAndParseImportListService.cs @@ -75,6 +75,8 @@ public ImportListFetchResult Fetch() if (DateTime.UtcNow < importListNextSync) { _logger.Trace("Skipping refresh of Import List [{0}]: {1} due to minimum refresh interval. Next Sync at {2}", importList.Name, importListLocal.Definition.Name, importListNextSync); + + continue; } }