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

Fixes #3880
pull/3953/head
Mark McDowall 4 years ago
parent ba9b7eb946
commit 0f792f9eb9

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

Loading…
Cancel
Save