1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-22 22:15:17 -04:00

Fix: When removing pending items from the queue remove all releases for that episode

This commit is contained in:
Keivan Beigi
2015-05-11 23:32:58 -07:00
parent 80403a4021
commit 724a3eee45
4 changed files with 140 additions and 14 deletions
+1 -1
View File
@@ -55,7 +55,7 @@ namespace NzbDrone.Api.Queue
if (pendingRelease != null)
{
_pendingReleaseService.RemovePendingQueueItem(id);
_pendingReleaseService.RemovePendingQueueItems(pendingRelease.Id);
return new object().AsResponse();
}