mirror of
https://github.com/Radarr/Radarr
synced 2025-12-06 08:28:50 +01:00
Fixed: Queue conflicts with the same download in multiple clients
(cherry picked from commit 6b84da614bd6d919e04c58babde6911916f99e5b)
This commit is contained in:
parent
b627c6badd
commit
90cff01fe5
1 changed files with 1 additions and 1 deletions
|
|
@ -78,7 +78,7 @@ private Queue MapMovie(TrackedDownload trackedDownload, Movie movie)
|
||||||
OutputPath = trackedDownload.DownloadItem.OutputPath.ToString()
|
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)
|
if (queue.Timeleft.HasValue)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue