fix: when normalizing a movie title, do not replace the Cyrillic letter `й`

pull/8173/head
Sergey M 1 year ago
parent b6b10d7c6f
commit b8bd948d27

@ -65,6 +65,10 @@ namespace NzbDrone.Common.Extensions
public static string RemoveAccent(this string text)
{
var normalizedString = text.Normalize(NormalizationForm.FormD);
// use the Cyrillic letter "й" instead of the combined unicode characters
normalizedString = Regex.Replace(normalizedString, "и\u0306", "й", RegexOptions.IgnoreCase);
var stringBuilder = new StringBuilder();
foreach (var c in normalizedString)

Loading…
Cancel
Save