mirror of
https://github.com/correl/mage.git
synced 2025-01-12 19:25:44 +00:00
Fixed a problem with downloading cards with AE in name from Gatherer.
This commit is contained in:
parent
512dbc9af8
commit
49e89a9a19
1 changed files with 1 additions and 0 deletions
|
@ -278,6 +278,7 @@ public class WizardCardsImageSource implements CardImageSource {
|
|||
private String normalizeName(String name) {
|
||||
return name.replace("\u2014", "-").replace("\u2019", "'")
|
||||
.replace("\u00C6", "AE").replace("\u00E6", "ae")
|
||||
.replace("\u00C3\u2020", "AE")
|
||||
.replace("\u00C1", "A").replace("\u00E1", "a")
|
||||
.replace("\u00C2", "A").replace("\u00E2", "a")
|
||||
.replace("\u00D6", "O").replace("\u00F6", "o")
|
||||
|
|
Loading…
Reference in a new issue