fixed bad API call

This commit is contained in:
Andreas Schildbach 2012-06-15 22:39:43 +02:00
parent 359aae5a83
commit 012a2e7ac3

View file

@ -53,6 +53,6 @@ public class ConnectionController
final Location fromLocation = new Location(fromType, fromId, null, from);
final Location toLocation = new Location(toType, toId, null, to);
final String products = "IRSUTBFC";
return provider.queryConnections(fromLocation, null, toLocation, new Date(), true, products, WalkSpeed.NORMAL, Accessibility.NEUTRAL);
return provider.queryConnections(fromLocation, null, toLocation, new Date(), true, 4, products, WalkSpeed.NORMAL, Accessibility.NEUTRAL);
}
}