When recovering from connection loss, return to main menu to be ready for the net command.
This commit is contained in:
parent
5e79900411
commit
5bd010d8f1
|
@ -421,6 +421,12 @@ public class RuffyScripter implements RuffyCommands {
|
|||
waitForScreenUpdate();
|
||||
}
|
||||
boolean connected = ruffyService.isConnected();
|
||||
if (connected) {
|
||||
MenuType menuType = getCurrentMenu().getType();
|
||||
if (menuType != MenuType.MAIN_MENU && menuType != MenuType.WARNING_OR_ERROR) {
|
||||
returnToRootMenu();
|
||||
}
|
||||
}
|
||||
log.debug("Recovery from connection loss " + (connected ? "succeeded" : "failed"));
|
||||
return connected;
|
||||
} catch (RemoteException e) {
|
||||
|
|
Loading…
Reference in a new issue