PostDownloadProvider was treating successful downloads as ones with an error and incorrectly trying to rename them before processing.

pull/3113/head
Mark McDowall 13 years ago
parent 10fc9a1981
commit 11e1deb5f7

@ -83,7 +83,7 @@ namespace NzbDrone.Core.Providers
continue;
}
if (folderStatus != PostDownloadStatusType.Unknown)
if (folderStatus != PostDownloadStatusType.NoError)
{
//Retry processing on the download
ReProcessDownload(new PostDownloadInfoModel{ Name = subfolderInfo.FullName, Status = folderStatus });

Loading…
Cancel
Save