mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-26 22:46:53 -04:00
Fixed: Removing pending release without blocklisting
This commit is contained in:
@@ -77,7 +77,7 @@ namespace Radarr.Api.V3.Queue
|
||||
|
||||
if (pendingRelease != null)
|
||||
{
|
||||
Remove(pendingRelease);
|
||||
Remove(pendingRelease, blocklist);
|
||||
|
||||
return;
|
||||
}
|
||||
@@ -120,7 +120,7 @@ namespace Radarr.Api.V3.Queue
|
||||
|
||||
foreach (var pendingRelease in pendingToRemove.DistinctBy(p => p.Id))
|
||||
{
|
||||
Remove(pendingRelease);
|
||||
Remove(pendingRelease, blocklist);
|
||||
}
|
||||
|
||||
foreach (var trackedDownload in trackedToRemove.DistinctBy(t => t.DownloadItem.DownloadId))
|
||||
@@ -279,9 +279,13 @@ namespace Radarr.Api.V3.Queue
|
||||
}
|
||||
}
|
||||
|
||||
private void Remove(NzbDrone.Core.Queue.Queue pendingRelease)
|
||||
private void Remove(NzbDrone.Core.Queue.Queue pendingRelease, bool blocklist)
|
||||
{
|
||||
_blocklistService.Block(pendingRelease.RemoteMovie, "Pending release manually blocklisted");
|
||||
if (blocklist)
|
||||
{
|
||||
_blocklistService.Block(pendingRelease.RemoteMovie, "Pending release manually blocklisted");
|
||||
}
|
||||
|
||||
_pendingReleaseService.RemovePendingQueueItems(pendingRelease.Id);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user