Fix import of cards with o with diaeresis (#8803)

This commit is contained in:
teskogi 2022-05-15 08:03:11 -07:00 committed by GitHub
parent 1021ff5ab0
commit e955d47821
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -10,7 +10,8 @@ public class CardNameUtil {
return name return name
.replace("&", "//") .replace("&", "//")
.replace("Æ", "Ae") .replace("Æ", "Ae")
.replace("ö", "o") .replace("ö", "A")
.replace("ö", "o")
.replace("û", "u") .replace("û", "u")
.replace("í", "i") .replace("í", "i")
.replace("â", "a") .replace("â", "a")