summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Chandru S <chandruis@google.com> 2023-04-12 19:37:36 +0000
committer Android (Google) Code Review <android-gerrit@google.com> 2023-04-12 19:37:36 +0000
commitc5b2cedd8d06f13fb5591c6a9909d54adc04d6b9 (patch)
treeb8c2229a432533ffa6430740b12a134938564c6e
parent784bd58dd27ba6e13a4720f94aace0ea4fe8595e (diff)
parente80cf38deaed25f141d62ef11d88664fd5bcb2a0 (diff)
Merge "Add back check that ignores help messages" into udc-dev
-rw-r--r--packages/SystemUI/src/com/android/keyguard/KeyguardUpdateMonitor.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/packages/SystemUI/src/com/android/keyguard/KeyguardUpdateMonitor.java b/packages/SystemUI/src/com/android/keyguard/KeyguardUpdateMonitor.java
index 33a822440866..2dd2d3948ba1 100644
--- a/packages/SystemUI/src/com/android/keyguard/KeyguardUpdateMonitor.java
+++ b/packages/SystemUI/src/com/android/keyguard/KeyguardUpdateMonitor.java
@@ -1259,6 +1259,9 @@ public class KeyguardUpdateMonitor implements TrustManager.TrustListener, Dumpab
* for bridging the gap while the migration is active.
*/
private void handleFaceHelp(int msgId, String helpString) {
+ if (mFaceAcquiredInfoIgnoreList.contains(msgId)) {
+ return;
+ }
Assert.isMainThread();
mLogger.logFaceAuthHelpMsg(msgId, helpString);
for (int i = 0; i < mCallbacks.size(); i++) {