mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
PostDownloadProvider was treating successful downloads as ones with an error and incorrectly trying to rename them before processing.
This commit is contained in:
@@ -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 });
|
||||
|
Reference in New Issue
Block a user