From baa0e47e50e6c39c04cd374be1ac6db9eafb752b Mon Sep 17 00:00:00 2001 From: Willem Melching Date: Wed, 14 Jul 2021 15:46:18 +0200 Subject: [PATCH] nav: force request retry --- selfdrive/ui/qt/maps/map.cc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/selfdrive/ui/qt/maps/map.cc b/selfdrive/ui/qt/maps/map.cc index 7fdb366e8d..731072db42 100644 --- a/selfdrive/ui/qt/maps/map.cc +++ b/selfdrive/ui/qt/maps/map.cc @@ -259,6 +259,11 @@ static float get_time_typical(const QGeoRouteSegment &segment) { void MapWindow::recomputeRoute() { + // Retry all timed out requests + if (!m_map.isNull()) { + m_map->connectionEstablished(); + } + if (!last_position) { return; }