Fixed: Downloads failed for file contents will be removed from client

This commit is contained in:
Mark McDowall 2025-03-05 20:45:49 -08:00
parent b2214fd912
commit c034282f45

View file

@ -40,6 +40,9 @@ namespace NzbDrone.Core.Download.TrackedDownloads
{
Status = TrackedDownloadStatus.Error;
State = TrackedDownloadState.FailedPending;
// Set CanBeRemoved to allow the failed item to be removed from the client
DownloadItem.CanBeRemoved = true;
}
}