1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-18 21:35:27 -04:00

Fixed: Removing pending release without blocklisting

This commit is contained in:
Bogdan
2024-07-08 22:25:26 +03:00
committed by Mark McDowall
parent 46c7de379c
commit 0c883f7886
2 changed files with 10 additions and 5 deletions
+8 -4
View File
@@ -77,7 +77,7 @@ namespace Sonarr.Api.V3.Queue
if (pendingRelease != null)
{
Remove(pendingRelease);
Remove(pendingRelease, blocklist);
return;
}
@@ -120,7 +120,7 @@ namespace Sonarr.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))
@@ -286,9 +286,13 @@ namespace Sonarr.Api.V3.Queue
}
}
private void Remove(NzbDrone.Core.Queue.Queue pendingRelease)
private void Remove(NzbDrone.Core.Queue.Queue pendingRelease, bool blocklist)
{
_blocklistService.Block(pendingRelease.RemoteEpisode, "Pending release manually blocklisted");
if (blocklist)
{
_blocklistService.Block(pendingRelease.RemoteEpisode, "Pending release manually blocklisted");
}
_pendingReleaseService.RemovePendingQueueItems(pendingRelease.Id);
}