From d85a8bc15d116585f5a07774e401b661ce6087f2 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Thu, 4 Aug 2011 21:22:42 -0700 Subject: [PATCH] If an unsorted episode that had a series that was not being watched it would prevent additional episodes from being processed. --- NzbDrone.Core/Providers/Jobs/PostDownloadScanJob.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/NzbDrone.Core/Providers/Jobs/PostDownloadScanJob.cs b/NzbDrone.Core/Providers/Jobs/PostDownloadScanJob.cs index 509c9bea5..3af0c7557 100644 --- a/NzbDrone.Core/Providers/Jobs/PostDownloadScanJob.cs +++ b/NzbDrone.Core/Providers/Jobs/PostDownloadScanJob.cs @@ -79,8 +79,8 @@ namespace NzbDrone.Core.Providers.Jobs if (series == null) { - Logger.Warn("Unable to Import new download, series doesn't exist in database."); - return; + Logger.Warn("Unable to Import new download [{0}], series doesn't exist in database.", subfolder); + continue; } var importedFiles = _diskScanProvider.Scan(series, subfolder);