TrackedDownload cache, queue etc now use DownloadId instead of TrackedId so it can be found purely by the id provided by the download client.

This commit is contained in:
Taloth Saldono 2015-01-22 01:27:07 +01:00
parent 8b8b60f8b8
commit d67811b50a
6 changed files with 7 additions and 9 deletions

View file

@ -102,7 +102,7 @@ namespace NzbDrone.Api.Queue
throw new NotFoundException();
}
var trackedDownload = _trackedDownloadService.Find(queueItem.TrackingId);
var trackedDownload = _trackedDownloadService.Find(queueItem.DownloadId);
if (trackedDownload == null)
{