1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2024-12-28 02:37:40 +00:00

Fixed: No longer produces error when deleting pending item from queue.

This commit is contained in:
Taloth Saldono 2014-12-26 14:31:10 +01:00
parent be1d4ce4c6
commit 85f7195d57

View file

@ -44,6 +44,8 @@ namespace NzbDrone.Api.Queue
if (pendingRelease != null)
{
_pendingReleaseService.RemovePendingQueueItem(id);
return new object().AsResponse();
}
var trackedDownload = GetTrackedDownload(id);