diff --git a/iphone/Maps/Core/Routing/MWMRouter.mm b/iphone/Maps/Core/Routing/MWMRouter.mm index c8549b5869..12b8b6bfdf 100644 --- a/iphone/Maps/Core/Routing/MWMRouter.mm +++ b/iphone/Maps/Core/Routing/MWMRouter.mm @@ -474,7 +474,9 @@ m2::PointD getMercator(MWMRoutePoint * p) [self presentDownloaderAlert:code countries:absentCountries]; [mapViewControlsManager onRouteError]; break; - case routing::IRouter::Cancelled: break; + case routing::IRouter::Cancelled: + [mapViewControlsManager onRoutePrepare]; + break; case routing::IRouter::StartPointNotFound: case routing::IRouter::EndPointNotFound: case routing::IRouter::NoCurrentPosition: diff --git a/map/routing_manager.cpp b/map/routing_manager.cpp index 4fc9742394..8c0b527005 100644 --- a/map/routing_manager.cpp +++ b/map/routing_manager.cpp @@ -511,9 +511,6 @@ void RoutingManager::CheckLocationForRouting(location::GpsInfo const & info) void RoutingManager::CallRouteBuilded(routing::IRouter::ResultCode code, storage::TCountriesVec const & absentCountries) { - if (code == IRouter::Cancelled) - return; - m_routingCallback(code, absentCountries); }