summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author TreeHugger Robot <treehugger-gerrit@google.com> 2022-06-03 18:07:51 +0000
committer Android (Google) Code Review <android-gerrit@google.com> 2022-06-03 18:07:51 +0000
commit4e1ecd1e4036ce0196be51b3372b50b5b6e7cf1b (patch)
tree87f06991b5b4c05e6c916748c5cb1ebd9684a87d
parentaedd857b68cecb3772b367d5a15e443e4b2cdca4 (diff)
parentbe9f50bacb4e1422a60396ae05409bac162109ef (diff)
Merge "Notify unlock controller when remote animation ends due to null finishedCallback." into tm-dev
-rw-r--r--packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java b/packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java
index e379d766f0ca..62fc96029781 100644
--- a/packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java
+++ b/packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java
@@ -2497,6 +2497,8 @@ public class KeyguardViewMediator extends CoreStartable implements Dumpable,
// supported, so it's always null.
mContext.getMainExecutor().execute(() -> {
if (finishedCallback == null) {
+ mKeyguardUnlockAnimationControllerLazy.get()
+ .notifyFinishedKeyguardExitAnimation(false /* cancelled */);
mInteractionJankMonitor.end(CUJ_LOCKSCREEN_UNLOCK_ANIMATION);
return;
}