mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-01-17 10:45:49 +02:00
Fixed: Replace : with _ when getting output path from Transmission
Fixes #3880
This commit is contained in:
parent
ba9b7eb946
commit
0f792f9eb9
@ -211,7 +211,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 New Issue
Block a user