Fixed: Improved title sorting for 'A to Z'

This commit is contained in:
Mark McDowall
2014-11-05 08:45:50 -08:00
parent 3411c4e5a7
commit 97c9217c0d
10 changed files with 60 additions and 7 deletions
+1 -1
View File
@@ -323,7 +323,7 @@ namespace NzbDrone.Core.Parser
return MultiPartCleanupRegex.Replace(title, string.Empty).Trim();
}
public static string NormalizeEpisodeTitle(string title)
public static string NormalizeTitle(string title)
{
string singleSpaces = WordDelimiterRegex.Replace(title, " ");
string noPunctuation = PunctuationRegex.Replace(singleSpaces, String.Empty);