forked from organicmaps/organicmaps
[android] Fixed driving options build error checking, i.e. if there are missing maps we ignore driving options
This commit is contained in:
parent
6f607400b3
commit
aa06d9c6db
1 changed files with 2 additions and 1 deletions
|
@ -228,7 +228,8 @@ public class RoutingController implements TaxiManager.TaxiListener
|
|||
|
||||
private boolean isDrivingOptionsBuildError()
|
||||
{
|
||||
return isVehicleRouterType() && RoutingOptions.hasAnyOptions();
|
||||
return !ResultCodesHelper.isMoreMapsNeeded(mLastResultCode) && isVehicleRouterType()
|
||||
&& RoutingOptions.hasAnyOptions();
|
||||
}
|
||||
|
||||
private void setState(State newState)
|
||||
|
|
Loading…
Add table
Reference in a new issue