From 90cff01fe5e7a2cade8b240a5aeae56e7ab44a48 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Sun, 29 Aug 2021 19:23:31 -0700 Subject: [PATCH] Fixed: Queue conflicts with the same download in multiple clients (cherry picked from commit 6b84da614bd6d919e04c58babde6911916f99e5b) --- src/NzbDrone.Core/Queue/QueueService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Queue/QueueService.cs b/src/NzbDrone.Core/Queue/QueueService.cs index 9c2718e5c..bb09ee629 100644 --- a/src/NzbDrone.Core/Queue/QueueService.cs +++ b/src/NzbDrone.Core/Queue/QueueService.cs @@ -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) {