Skip to content

Commit

Permalink
Merge pull request #27 from hmlendea/hotfix
Browse files Browse the repository at this point in the history
Fixed name normalisation
  • Loading branch information
hmlendea authored Apr 3, 2021
2 parents a3dd7e5 + ff59553 commit f4800a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Service/NameNormaliser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public string ToWindows1252(string name)

string processedName = ApplyCommonReplacements(name);

processedName = Regex.Replace(processedName, "[A̓]", "Á");
processedName = processedName.Replace("", "Á");
processedName = Regex.Replace(processedName, "[ĂĀ]", "Ã");
processedName = Regex.Replace(processedName, "[ḂḄ]", "B");
processedName = Regex.Replace(processedName, "[Ć]", "C");
Expand Down

0 comments on commit f4800a4

Please sign in to comment.