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:
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user