Fixed missing rates for some cards

This commit is contained in:
Oleg Agafonov 2020-01-01 14:28:58 +04:00
parent 4d51d379fe
commit 3c727eb06b

View file

@ -272,6 +272,7 @@ public final class RateCard {
if (s.length == 2) {
Integer rating = Integer.parseInt(s[1].trim());
String name = s[0].trim();
name = name.replace("", "'");
if (rating > max) {
max = rating;
}