diff --git a/OsmAnd/src/net/osmand/plus/routing/RouteCalculationResult.java b/OsmAnd/src/net/osmand/plus/routing/RouteCalculationResult.java index 78afc59c3d..4e42f55e24 100644 --- a/OsmAnd/src/net/osmand/plus/routing/RouteCalculationResult.java +++ b/OsmAnd/src/net/osmand/plus/routing/RouteCalculationResult.java @@ -813,9 +813,11 @@ public class RouteCalculationResult { cacheAgreggatedDirections = new ArrayList(); RouteDirectionInfo p = null; for(RouteDirectionInfo i : list) { - if(p == null || !i.getTurnType().isSkipToSpeak() || - (!Algorithms.objectEquals(p.getRef(), i.getRef()) && - !Algorithms.objectEquals(p.getStreetName(), i.getStreetName()))) { +// if(p == null || !i.getTurnType().isSkipToSpeak() || +// (!Algorithms.objectEquals(p.getRef(), i.getRef()) && +// !Algorithms.objectEquals(p.getStreetName(), i.getStreetName()))) { +// Just a temporary test + if(p == null || !i.getTurnType().isSkipToSpeak()) { p = new RouteDirectionInfo(i.getAverageSpeed(), i.getTurnType()); p.routePointOffset = i.routePointOffset; p.routeEndPointOffset = i.routeEndPointOffset;