mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-26 01:27:00 +00: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:
parent
9cf77955d0
commit
d85a8bc15d
1 changed files with 2 additions and 2 deletions
|
@ -79,8 +79,8 @@ public virtual void Start(ProgressNotification notification, int targetId)
|
||||||
|
|
||||||
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);
|
||||||
|
|
Loading…
Reference in a new issue