From 4c6f3c2f7fd3274b9e421adc74530b4d1e90845c Mon Sep 17 00:00:00 2001 From: Ilya Grechuhin Date: Wed, 28 Feb 2018 12:53:14 +0300 Subject: [PATCH] [MAPSME-6769] [ios] Fixed routing errors handling. --- iphone/Maps/Core/Routing/MWMRouter.mm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/iphone/Maps/Core/Routing/MWMRouter.mm b/iphone/Maps/Core/Routing/MWMRouter.mm index 24fabe305a..90ab885948 100644 --- a/iphone/Maps/Core/Routing/MWMRouter.mm +++ b/iphone/Maps/Core/Routing/MWMRouter.mm @@ -626,6 +626,9 @@ void logPointEvent(MWMRoutePoint * point, NSString * eventType) case routing::IRouter::PointsInDifferentMWM: case routing::IRouter::InternalError: case routing::IRouter::IntermediatePointNotFound: + case routing::IRouter::TransitRouteNotFoundNoNetwork: + case routing::IRouter::TransitRouteNotFoundTooLongPedestrian: + case routing::IRouter::RouteNotFoundRedressRouteError: if ([MWMRouter isTaxi]) return; [[MWMAlertViewController activeAlertController] presentAlert:code];