Merge "On reset, show keyguard if not already shown" into rvc-dev

This commit is contained in:
Heemin Seog
2020-05-15 20:47:46 +00:00
committed by Android (Google) Code Review

View File

@@ -203,6 +203,11 @@ public class CarKeyguardViewController extends OverlayViewController implements
}
mKeyguardUpdateMonitor.sendKeyguardReset();
notifyKeyguardUpdateMonitor();
} else {
// This is necessary in order to address an inconsistency between the keyguard service
// and the keyguard views.
// TODO: Investigate the source of the inconsistency.
show(/* options= */ null);
}
}