Fixed: Replace : with _ when getting output path from Transmission

Fixes #3880
This commit is contained in:
Mark McDowall 2020-09-08 00:42:29 -07:00
parent ba9b7eb946
commit 0f792f9eb9
1 changed files with 1 additions and 1 deletions

View File

@ -211,7 +211,7 @@ namespace NzbDrone.Core.Download.Clients.Transmission
protected virtual OsPath GetOutputPath(OsPath outputPath, TransmissionTorrent torrent) protected virtual OsPath GetOutputPath(OsPath outputPath, TransmissionTorrent torrent)
{ {
return outputPath + torrent.Name; return outputPath + torrent.Name.Replace(":", "_");
} }
protected string GetDownloadDirectory() protected string GetDownloadDirectory()