forked from organicmaps/organicmaps
Fixed wrong keys in Android
This commit is contained in:
parent
bea61e7ca7
commit
21c20645de
1 changed files with 2 additions and 2 deletions
|
@ -442,7 +442,7 @@ public class RoutingPlanController extends ToolbarController
|
|||
showError(R.string.taxi_not_found);
|
||||
break;
|
||||
case RemoteError:
|
||||
showError(R.string.uber_remote_error);
|
||||
showError(R.string.dialog_taxi_error);
|
||||
break;
|
||||
default:
|
||||
throw new AssertionError("Unsupported uber error: " + code);
|
||||
|
@ -455,7 +455,7 @@ public class RoutingPlanController extends ToolbarController
|
|||
int checkedId = mRouterTypes.getCheckedRadioButtonId();
|
||||
RoutingToolbarButton rb = (RoutingToolbarButton) mRouterTypes.findViewById(checkedId);
|
||||
rb.error();
|
||||
showError(R.string.uber_no_internet);
|
||||
showError(R.string.dialog_taxi_offline);
|
||||
}
|
||||
|
||||
private void showError(@StringRes int message)
|
||||
|
|
Loading…
Add table
Reference in a new issue