mirror of https://github.com/Radarr/Radarr
Fixed: Queue conflicts with the same download in multiple clients
(cherry picked from commit 6b84da614bd6d919e04c58babde6911916f99e5b)
This commit is contained in:
parent
b627c6badd
commit
90cff01fe5
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue