1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-10-03 22:57:18 +02:00

Fixed: Importing file from UNC shared folder without job folder

(cherry picked from commit 9183c6b84638e3654c3f90a80e560a06575606bb)
This commit is contained in:
Mark McDowall 2022-04-12 17:08:53 -07:00 committed by Qstick
parent 1caced614e
commit 907950e309

View File

@ -120,7 +120,7 @@ public void Import(TrackedDownload trackedDownload)
return; return;
} }
var importResults = _downloadedMovieImportService.ProcessPath(outputPath, ImportMode.Auto, trackedDownload.RemoteMovie.Movie, trackedDownload.DownloadItem); var importResults = _downloadedMovieImportService.ProcessPath(outputPath, ImportMode.Auto, trackedDownload.RemoteMovie.Movie, trackedDownload.ImportItem);
if (VerifyImport(trackedDownload, importResults)) if (VerifyImport(trackedDownload, importResults))
{ {