Merge "Add back check that ignores help messages" into udc-dev

This commit is contained in:
Chandru S
2023-04-12 19:37:36 +00:00
committed by Android (Google) Code Review

View File

@@ -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++) {