Skip to content

Commit 0057168

Browse files
committed
Fixed Alipay and Taobao reEnteredPayDialogSolution ignore volume down button temporary blocking
1 parent 844bc29 commit 0057168

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

app/src/main/java/com/surcumference/fingerprint/plugin/impl/alipay/AlipayBasePlugin.java

+3
Original file line numberDiff line numberDiff line change
@@ -368,6 +368,9 @@ private void setupPaymentItemOnClickListener(ViewGroup rootView) {
368368
@Override
369369
public void onClick(View v) {
370370
try {
371+
if (mFingerprintIdentifyTemporaryBlocking) {
372+
return;
373+
}
371374
AlertDialog dialog = mFingerPrintAlertDialog;
372375
if (dialog == null) {
373376
return;

app/src/main/java/com/surcumference/fingerprint/plugin/impl/taobao/TaobaoBasePlugin.java

+3
Original file line numberDiff line numberDiff line change
@@ -341,6 +341,9 @@ private void setupPaymentItemOnClickListener(ViewGroup rootView) {
341341
@Override
342342
public void onClick(View v) {
343343
try {
344+
if (mFingerprintIdentifyTemporaryBlocking) {
345+
return;
346+
}
344347
AlertDialog dialog = mFingerPrintAlertDialog;
345348
if (dialog == null) {
346349
return;

0 commit comments

Comments
 (0)