From a6f4c3cdb0d0c5417e0b0fb326ea305ea70e69fc Mon Sep 17 00:00:00 2001 From: Qstick Date: Sat, 4 Jun 2022 19:01:16 -0500 Subject: [PATCH] Fixed: Importing file from UNC shared folder without job folder Fixes #2759 Co-Authored-By: Mark McDowall --- src/NzbDrone.Core/Download/CompletedDownloadService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Download/CompletedDownloadService.cs b/src/NzbDrone.Core/Download/CompletedDownloadService.cs index 988bb7dc5..d80af358e 100644 --- a/src/NzbDrone.Core/Download/CompletedDownloadService.cs +++ b/src/NzbDrone.Core/Download/CompletedDownloadService.cs @@ -120,7 +120,7 @@ namespace NzbDrone.Core.Download trackedDownload.State = TrackedDownloadState.Importing; var outputPath = trackedDownload.ImportItem.OutputPath.FullPath; - var importResults = _downloadedTracksImportService.ProcessPath(outputPath, ImportMode.Auto, trackedDownload.RemoteAlbum.Artist, trackedDownload.DownloadItem); + var importResults = _downloadedTracksImportService.ProcessPath(outputPath, ImportMode.Auto, trackedDownload.RemoteAlbum.Artist, trackedDownload.ImportItem); if (VerifyImport(trackedDownload, importResults)) {