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

View file

@ -55,7 +55,7 @@ namespace NzbDrone.Api.Queue
if (pendingRelease != null)
{
_pendingReleaseService.RemovePendingQueueItem(id);
_pendingReleaseService.RemovePendingQueueItems(pendingRelease.Id);
return new object().AsResponse();
}