mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 13:33:34 -07:00
Fixed: Replace : with _ when getting output path from Transmission
(cherry picked from commit 0f792f9eb9517a4165a54d7c4551f4f68822d18e)
This commit is contained in:
parent
aaebbbfda1
commit
c6d49c6527
1 changed files with 1 additions and 1 deletions
|
@ -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()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue