From 11e1deb5f7f0ece1cb7251c9cdc0e4cb109d43a4 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Fri, 21 Oct 2011 16:49:30 -0700 Subject: [PATCH] PostDownloadProvider was treating successful downloads as ones with an error and incorrectly trying to rename them before processing. --- NzbDrone.Core/Providers/PostDownloadProvider.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NzbDrone.Core/Providers/PostDownloadProvider.cs b/NzbDrone.Core/Providers/PostDownloadProvider.cs index b80771930..3d0709c59 100644 --- a/NzbDrone.Core/Providers/PostDownloadProvider.cs +++ b/NzbDrone.Core/Providers/PostDownloadProvider.cs @@ -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 });