1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-17 21:26:13 -04:00

Fix for QBittorrent directory for specific torrents

fixes #4091
This commit is contained in:
Taloth Saldono
2020-11-14 01:52:28 +01:00
parent 8b2550cef0
commit 3ff848b019

View File

@@ -253,7 +253,7 @@ namespace NzbDrone.Core.Download.Clients.QBittorrent
relativePath = relativePath.Directory;
}
outputPath = savePath + relativePath;
outputPath = savePath + relativePath.FileName;
}
result.OutputPath = _remotePathMappingService.RemapRemoteToLocal(Settings.Host, outputPath);