mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-19 21:13:28 -07:00
Replace colon in movie path.
This commit is contained in:
parent
69786b3968
commit
bd241dcbe0
1 changed files with 3 additions and 1 deletions
|
@ -346,7 +346,9 @@ namespace NzbDrone.Core.Organizer
|
|||
public static string CleanFolderName(string name)
|
||||
{
|
||||
name = FileNameCleanupRegex.Replace(name, match => match.Captures[0].Value[0].ToString());
|
||||
return name.Trim(' ', '.');
|
||||
name = name.Trim(' ', '.');
|
||||
|
||||
return name.Replace(":", " -");
|
||||
}
|
||||
|
||||
private void AddSeriesTokens(Dictionary<string, Func<TokenMatch, string>> tokenHandlers, Series series)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue