mirror of
https://github.com/lidarr/Lidarr
synced 2025-03-03 18:15:37 +00:00
PostDownloadProvider was treating successful downloads as ones with an error and incorrectly trying to rename them before processing.
This commit is contained in:
parent
10fc9a1981
commit
11e1deb5f7
1 changed files with 1 additions and 1 deletions
|
@ -83,7 +83,7 @@ public virtual void ProcessDropFolder(string dropFolder)
|
|||
continue;
|
||||
}
|
||||
|
||||
if (folderStatus != PostDownloadStatusType.Unknown)
|
||||
if (folderStatus != PostDownloadStatusType.NoError)
|
||||
{
|
||||
//Retry processing on the download
|
||||
ReProcessDownload(new PostDownloadInfoModel{ Name = subfolderInfo.FullName, Status = folderStatus });
|
||||
|
|
Loading…
Reference in a new issue