fixed fares in San Francisco

git-svn-id: https://public-transport-enabler.googlecode.com/svn/trunk@606 0924bc21-9374-b0fa-ee44-9ff1593b38f0
This commit is contained in:
andreas.schildbach@gmail.com 2011-05-06 17:01:37 +00:00
parent e26eff18c2
commit a1aad80bad

View file

@ -1882,7 +1882,7 @@ public abstract class AbstractEfaProvider implements NetworkProvider
}
else if (key.equals("PRICE"))
{
fare = Float.parseFloat(value) * (currency.getCurrencyCode().equals("US$") ? 0.01f : 1);
fare = Float.parseFloat(value) * (currency.getCurrencyCode().equals("USD") ? 0.01f : 1);
}
XmlPullUtil.exit(pp, "itdGenericTicket");