From 8a074c61f0ab7229de7640336e6166aed70bd143 Mon Sep 17 00:00:00 2001 From: ta264 Date: Wed, 4 Aug 2021 21:11:21 +0100 Subject: [PATCH] Fixed: Allow repeated import attempts until downloaded files appear (cherry picked from commit 9f1d4446e82e9c5efde3d0339be2f7dde40ba1ac) --- src/NzbDrone.Core/Download/CompletedDownloadService.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/NzbDrone.Core/Download/CompletedDownloadService.cs b/src/NzbDrone.Core/Download/CompletedDownloadService.cs index bc6234b73..f44a6d681 100644 --- a/src/NzbDrone.Core/Download/CompletedDownloadService.cs +++ b/src/NzbDrone.Core/Download/CompletedDownloadService.cs @@ -95,6 +95,7 @@ namespace NzbDrone.Core.Download if (importResults.Empty()) { trackedDownload.Warn("No files found are eligible for import in {0}", outputPath); + trackedDownload.State = TrackedDownloadState.ImportPending; return; }