commit | 0dcb11a1406b7d8d9f28ae6f208ce60381826949 | [log] [tgz] |
---|---|---|
author | Justin Weir <justinweir@google.com> | Wed Nov 29 15:03:20 2023 -0500 |
committer | Justin Weir <justinweir@google.com> | Thu Nov 30 14:42:24 2023 +0000 |
tree | 418881bad6244349add78d9d9302c1ba41a60726 | |
parent | 7cf1ef6641a1f04d463df71da976c158b9779c30 [diff] |
Add a comment explaining a bug fix Bug: 311266890 Test: N/A Flag: N/A Change-Id: Ic3737b1e549ed60ae3ce8134fdc483871b1fb809
diff --git a/packages/SystemUI/src/com/android/systemui/biometrics/AuthDialogPanelInteractionDetector.kt b/packages/SystemUI/src/com/android/systemui/biometrics/AuthDialogPanelInteractionDetector.kt index b343add..04c2351 100644 --- a/packages/SystemUI/src/com/android/systemui/biometrics/AuthDialogPanelInteractionDetector.kt +++ b/packages/SystemUI/src/com/android/systemui/biometrics/AuthDialogPanelInteractionDetector.kt
@@ -41,7 +41,9 @@ Log.e(TAG, "Already enabled") return } + //TODO(b/313957306) delete this check if (shadeInteractorLazy.get().isUserInteracting.value) { + // Workaround for b/311266890. This flow is in an error state that breaks this. Log.e(TAG, "isUserInteracting already true, skipping enable") return }