diff --git a/routing_common/vehicle_model.cpp b/routing_common/vehicle_model.cpp index 0576e7ffeb..462307d5ba 100644 --- a/routing_common/vehicle_model.cpp +++ b/routing_common/vehicle_model.cpp @@ -373,14 +373,11 @@ shared_ptr VehicleModelFactory::GetVehicleModelForCountry { auto it = m_models.find(parent); if (it != m_models.end()) - { - LOG(LDEBUG, ("Vehicle model for", country, " was found:", parent)); return it->second; - } + parent = GetParent(parent); } - LOG(LDEBUG, ("Vehicle model wasn't found, default model is used instead:", country)); return GetVehicleModel(); }