Merge pull request #22 from AeonLucid/develop

Replace colon in movie path.
This commit is contained in:
Leonardo Galli 2017-01-04 18:42:01 +01:00 committed by GitHub
commit 5668a3bcfd
1 changed files with 3 additions and 1 deletions

View File

@ -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)