Merge "Return the correct action for PromptAndWait" am: 99277fa6af
Original change: https://android-review.googlesource.com/c/platform/bootable/recovery/+/1398888 Change-Id: I8b8a07f433aa34cd29de401f3137c6992812dc20
This commit is contained in:
commit
c55e7fd95d
1 changed files with 3 additions and 3 deletions
|
@ -421,15 +421,15 @@ static Device::BuiltinAction PromptAndWait(Device* device, InstallResult status)
|
|||
case Device::REBOOT:
|
||||
case Device::SHUTDOWN:
|
||||
if (!ui->IsTextVisible()) {
|
||||
return Device::REBOOT;
|
||||
return chosen_action;
|
||||
}
|
||||
// okay to reboot; no need to ask.
|
||||
if (!update_in_progress) {
|
||||
return Device::REBOOT;
|
||||
return chosen_action;
|
||||
}
|
||||
// An update might have been failed. Ask if user really wants to reboot.
|
||||
if (AskToReboot(device, chosen_action)) {
|
||||
return Device::REBOOT;
|
||||
return chosen_action;
|
||||
}
|
||||
break;
|
||||
|
||||
|
|
Loading…
Reference in a new issue