[routing] Bugfix. Route rebuilding happens now after downloading traffic jams.

This commit is contained in:
Vladimir Byko-Ianko 2019-12-26 08:13:16 +03:00 committed by mesozoic-drones
parent 985cb5ec0f
commit d067e760a3

View file

@ -1129,8 +1129,8 @@ void RoutingManager::CheckLocationForRouting(location::GpsInfo const & info)
m_routingSession.RebuildRoute(
mercator::FromLatLon(info.m_latitude, info.m_longitude),
[this](Route const & route, RouterResultCode code) { OnRebuildRouteReady(route, code); },
nullptr /* needMoreMapsCallback */, nullptr /* removeRouteCallback */, 0 /* timeoutSec */,
SessionState::RouteRebuilding, true /* adjustToPrevRoute */);
nullptr /* needMoreMapsCallback */, nullptr /* removeRouteCallback */,
RouterDelegate::kNoTimeout, SessionState::RouteRebuilding, true /* adjustToPrevRoute */);
}
}