Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorАлександр Зацепин <az@mapswithme.com>2017-07-12 10:14:26 +0300
committerRoman Kuznetsov <r.kuznetsow@gmail.com>2017-07-12 10:20:01 +0300
commit53fc23cd8c47c42717fb539da2b03e9117cddba6 (patch)
tree643b3c1ad8cb193916803ea3733ad7765919bc12
parent9e8ff957827e916e225156982e7e5549639314b7 (diff)
[android] Fixed navigation start from my positionbeta-906
-rw-r--r--android/src/com/mapswithme/maps/routing/RoutingController.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/android/src/com/mapswithme/maps/routing/RoutingController.java b/android/src/com/mapswithme/maps/routing/RoutingController.java
index c3a27aff58..09136b8345 100644
--- a/android/src/com/mapswithme/maps/routing/RoutingController.java
+++ b/android/src/com/mapswithme/maps/routing/RoutingController.java
@@ -405,7 +405,7 @@ public class RoutingController implements TaxiManager.TaxiListener
MapObject my = LocationHelper.INSTANCE.getMyPosition();
- if (my == null || MapObject.isOfType(MapObject.MY_POSITION, getStartPoint()))
+ if (my == null || !MapObject.isOfType(MapObject.MY_POSITION, getStartPoint()))
{
Statistics.INSTANCE.trackEvent(Statistics.EventName.ROUTING_START_SUGGEST_REBUILD);
AlohaHelper.logClick(AlohaHelper.ROUTING_START_SUGGEST_REBUILD);