Fixed: Remove accents from titles when looking for matching series

This commit is contained in:
Mark McDowall
2014-08-11 07:19:02 -07:00
parent 2008b32018
commit 41ece422c9
3 changed files with 14 additions and 6 deletions
+1 -1
View File
@@ -300,7 +300,7 @@ namespace NzbDrone.Core.Parser
if (Int64.TryParse(title, out number))
return title;
return NormalizeRegex.Replace(title, String.Empty).ToLower();
return NormalizeRegex.Replace(title, String.Empty).ToLower().RemoveAccent();
}
public static string CleanupEpisodeTitle(string title)