Mark invalid series downloads with NzbDrone prefix.

Fixed broken tests.
This commit is contained in:
Mark McDowall 2011-09-18 13:53:05 -07:00
commit 4604bbd821
3 changed files with 5 additions and 2 deletions

View file

@ -86,6 +86,9 @@ namespace NzbDrone.Core.Providers.Jobs
if (series == null)
{
Logger.Warn("Unable to Import new download [{0}], series doesn't exist in database.", subfolder);
//Rename the Directory so it's not processed again.
_diskProvider.MoveDirectory(subfolderInfo.FullName, Path.Combine(subfolderInfo.Parent.FullName, "_NzbDrone_" + subfolderInfo.Name));
continue;
}