Fixed: Queue conflicts with the same download in multiple clients

(cherry picked from commit 6b84da614bd6d919e04c58babde6911916f99e5b)
This commit is contained in:
Mark McDowall 2021-08-29 19:23:31 -07:00 committed by Robin Dadswell
parent b627c6badd
commit 90cff01fe5
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@ namespace NzbDrone.Core.Queue
OutputPath = trackedDownload.DownloadItem.OutputPath.ToString()
};
queue.Id = HashConverter.GetHashInt31(string.Format("trackedDownload-{0}", trackedDownload.DownloadItem.DownloadId));
queue.Id = HashConverter.GetHashInt31($"trackedDownload-{trackedDownload.DownloadClient}-{trackedDownload.DownloadItem.DownloadId}");
if (queue.Timeleft.HasValue)
{