AbstractEfaProvider: Use <gix> value as trip ID in queryTripsMobile().

This commit is contained in:
Andreas Schildbach 2021-04-06 15:15:27 +02:00
parent 5ceceb20de
commit 73405d9a92

View file

@ -2676,10 +2676,10 @@ public abstract class AbstractEfaProvider extends AbstractNetworkProvider {
XmlPullUtil.valueTag(pp, "d"); // duration
final int numChanges = Integer.parseInt(XmlPullUtil.valueTag(pp, "ic"));
final String tripId = XmlPullUtil.valueTag(pp, "de");
XmlPullUtil.valueTag(pp, "de");
XmlPullUtil.optValueTag(pp, "optval", null);
XmlPullUtil.optValueTag(pp, "alt", null);
XmlPullUtil.optValueTag(pp, "gix", null);
final String tripId = XmlPullUtil.valueTag(pp, "gix");
XmlPullUtil.enter(pp, "ls");