fixed NotInQueueSpecification throwing exceptions when it couldn't parse an item in the queue.

pull/4/head
Keivan Beigi 11 years ago
parent d0d95602c6
commit 1f62194ab8

@ -28,7 +28,7 @@ namespace NzbDrone.Core.DecisionEngine.Specifications
{ {
var downloadClient = _downloadClientProvider.GetDownloadClient(); var downloadClient = _downloadClientProvider.GetDownloadClient();
var queue = downloadClient.GetQueue().Select(q => Parser.Parser.ParseTitle(q.Title)); var queue = downloadClient.GetQueue().Select(queueItem => Parser.Parser.ParseTitle(queueItem.Title)).Where(episodeInfo => episodeInfo != null);
return !IsInQueue(subject, queue); return !IsInQueue(subject, queue);
} }

Loading…
Cancel
Save