mirror of
https://github.com/Readarr/Readarr
synced 2026-01-06 23:54:49 +01:00
Fixed: Replace : with _ when getting output path from Transmission
Fixes #433 (cherry picked from commit 0f792f9eb9517a4165a54d7c4551f4f68822d18e)
This commit is contained in:
parent
907b7dc429
commit
39b2326bc5
1 changed files with 1 additions and 1 deletions
|
|
@ -224,7 +224,7 @@ protected override void Test(List<ValidationFailure> failures)
|
|||
|
||||
protected virtual OsPath GetOutputPath(OsPath outputPath, TransmissionTorrent torrent)
|
||||
{
|
||||
return outputPath + torrent.Name;
|
||||
return outputPath + torrent.Name.Replace(":", "_");
|
||||
}
|
||||
|
||||
protected string GetDownloadDirectory()
|
||||
|
|
|
|||
Loading…
Reference in a new issue