Fix for Avacyn's Pilgrim image download.

This commit is contained in:
North 2011-09-11 22:58:18 +03:00
parent c155a90a7d
commit f1bf37bbd0
4 changed files with 2 additions and 6 deletions

View file

@ -78,7 +78,7 @@ public class CardParser extends Thread {
List<String> flavorText = new ArrayList<String>();
if (!select.isEmpty()) {
for (Element element : select) {
flavorText.add(element.html().trim().replace("&quot;", "\""));
flavorText.add(element.html().trim().replace("&quot;", "\"").replace("<i>", "").replace("</i>", ""));
}
}
card.setFlavorText(flavorText);