mirror of
https://github.com/fergalmoran/Readarr.git
synced 2026-02-11 02:16:53 +00:00
Fixed: Replace : with _ when getting output path from Transmission
Fixes #433 (cherry picked from commit 0f792f9eb9517a4165a54d7c4551f4f68822d18e)
This commit is contained in:
@@ -224,7 +224,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()
|
||||
|
||||
Reference in New Issue
Block a user