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

@@ -59,7 +59,7 @@ namespace NzbDrone.Core.Queue
TrackedDownloadStatus = trackedDownload.Status.ToString(),
StatusMessages = trackedDownload.StatusMessages.ToList(),
RemoteEpisode = trackedDownload.RemoteEpisode,
TrackingId = trackedDownload.TrackingId
DownloadId = trackedDownload.DownloadItem.DownloadId
};
if (queue.Timeleft.HasValue)