Blind fix to support seperator in movie tags.

This commit is contained in:
Leonardo Galli 2017-01-23 22:34:16 +01:00 committed by GitHub
parent b273bfb10e
commit 5339f8efdc
1 changed files with 1 additions and 1 deletions

View File

@ -497,7 +497,7 @@ namespace NzbDrone.Core.Organizer
private void AddTagsTokens(Dictionary<string, Func<TokenMatch, string>> tokenHandlers, MovieFile movieFile)
{
tokenHandlers["{Tags}"] = m => CultureInfo.CurrentCulture.TextInfo.ToTitleCase(movieFile.Edition.ToLower());
tokenHandlers["{Edition Tags}"] = m => CultureInfo.CurrentCulture.TextInfo.ToTitleCase(movieFile.Edition.ToLower());
}
private void AddReleaseDateTokens(Dictionary<string, Func<TokenMatch, string>> tokenHandlers, int releaseYear)