1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-11-24 08:42:19 +02:00

Fixed: Importing file from UNC shared folder without job folder

Closes #4943
This commit is contained in:
Mark McDowall 2022-04-12 17:08:53 -07:00
parent d73ad3e27a
commit 9183c6b846

View File

@ -129,7 +129,7 @@ public void Import(TrackedDownload trackedDownload)
var outputPath = trackedDownload.ImportItem.OutputPath.FullPath;
var importResults = _downloadedEpisodesImportService.ProcessPath(outputPath, ImportMode.Auto,
trackedDownload.RemoteEpisode.Series, trackedDownload.DownloadItem);
trackedDownload.RemoteEpisode.Series, trackedDownload.ImportItem);
if (VerifyImport(trackedDownload, importResults))
{