Skip to content

Commit 31e7fb3

Browse files
committed
생체인식 결제 error 처리 개선
1 parent 3b21219 commit 31e7fb3

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

bootpay/src/main/java/kr/co/bootpay/bio/activity/BootpayBioActivity.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@
5454
import kr.co.bootpay.listener.CancelListener;
5555
import kr.co.bootpay.listener.ConfirmListener;
5656
import kr.co.bootpay.listener.DoneListener;
57+
import kr.co.bootpay.listener.ErrorListener;
5758
import kr.co.bootpay.listener.EventListener;
5859
import kr.co.bootpay.model.Request;
5960
import kr.co.bootpay.model.bio.BioDeviceUse;
@@ -490,6 +491,9 @@ public void run() {
490491
@Override
491492
public void onClick(DialogInterface dialogInterface, int i) {
492493
finish();
494+
ErrorListener error = CurrentBioRequest.getInstance().error;
495+
if(error != null) error.onError(msg);
496+
finish();
493497
}
494498
});
495499
AlertDialog alertDialog = builder.create();

0 commit comments

Comments
 (0)