diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/phone/KeyguardBottomAreaView.java b/packages/SystemUI/src/com/android/systemui/statusbar/phone/KeyguardBottomAreaView.java index 8cef23f213832..cabfbca26dfb9 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/phone/KeyguardBottomAreaView.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/phone/KeyguardBottomAreaView.java @@ -935,7 +935,9 @@ public class KeyguardBottomAreaView extends FrameLayout implements View.OnClickL private void onWalletClick(View v) { // More coming here; need to inform the user about how to proceed - mFalsingManager.isFalseTap(FalsingManager.LOW_PENALTY); + if (!mFalsingManager.isFalseTap(FalsingManager.LOW_PENALTY)) { + return; + } if (mHasCard) { Intent intent = new Intent(mContext, WalletActivity.class)