From 012a2e7ac31286763391f1cd58ba4bbcf0b89bc1 Mon Sep 17 00:00:00 2001 From: Andreas Schildbach Date: Fri, 15 Jun 2012 22:39:43 +0200 Subject: [PATCH] fixed bad API call --- .../java/de/schildbach/pte/service/ConnectionController.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/service/src/main/java/de/schildbach/pte/service/ConnectionController.java b/service/src/main/java/de/schildbach/pte/service/ConnectionController.java index ba43dbf7..18960d90 100644 --- a/service/src/main/java/de/schildbach/pte/service/ConnectionController.java +++ b/service/src/main/java/de/schildbach/pte/service/ConnectionController.java @@ -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); } }