1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-01-25 11:13:39 +02:00

If an unsorted episode that had a series that was not being watched it would prevent additional episodes from being processed.

This commit is contained in:
Mark McDowall 2011-08-04 21:22:42 -07:00
parent 9cf77955d0
commit d85a8bc15d

View File

@ -79,8 +79,8 @@ namespace NzbDrone.Core.Providers.Jobs
if (series == null) if (series == null)
{ {
Logger.Warn("Unable to Import new download, series doesn't exist in database."); Logger.Warn("Unable to Import new download [{0}], series doesn't exist in database.", subfolder);
return; continue;
} }
var importedFiles = _diskScanProvider.Scan(series, subfolder); var importedFiles = _diskScanProvider.Scan(series, subfolder);