diff --git a/iphone/Maps/Core/Routing/MWMRouter.mm b/iphone/Maps/Core/Routing/MWMRouter.mm index 425fb0aff6..4935478a7f 100644 --- a/iphone/Maps/Core/Routing/MWMRouter.mm +++ b/iphone/Maps/Core/Routing/MWMRouter.mm @@ -632,11 +632,8 @@ void logPointEvent(MWMRoutePoint * point, NSString * eventType) - (void)processRouteBuilderProgress:(CGFloat)progress { - if ([MWMRouter isTaxi]) - return; - auto navigationManager = [MWMNavigationDashboardManager manager]; - [navigationManager onRoutePlanning]; - [navigationManager setRouteBuilderProgress:progress]; + if (![MWMRouter isTaxi]) + [[MWMNavigationDashboardManager manager] setRouteBuilderProgress:progress]; } - (void)processRouteRecommendation:(MWMRouterRecommendation)recommendation