1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-18 21:35:51 -04:00

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

This commit is contained in:
Mark McDowall
2011-10-21 16:49:30 -07:00
parent 10fc9a1981
commit 11e1deb5f7
@@ -83,7 +83,7 @@ namespace NzbDrone.Core.Providers
continue; continue;
} }
if (folderStatus != PostDownloadStatusType.Unknown) if (folderStatus != PostDownloadStatusType.NoError)
{ {
//Retry processing on the download //Retry processing on the download
ReProcessDownload(new PostDownloadInfoModel{ Name = subfolderInfo.FullName, Status = folderStatus }); ReProcessDownload(new PostDownloadInfoModel{ Name = subfolderInfo.FullName, Status = folderStatus });