1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-16 21:15:33 -04:00

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

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)
{