Skip to content

Commit

Permalink
Merge pull request #579 from gini/EC-46_IBAN_fix
Browse files Browse the repository at this point in the history
Ec 46 iban fix
  • Loading branch information
GeraltRiv authored Sep 18, 2024
2 parents ccb68b8 + 031fced commit fc219fd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public void onQRCodesDetected(@NonNull final List<String> qrCodes) {
public void onQRCodeScannerError(Exception e) {

//TODO: check content of exception if there will be more use cases in the future
if (!(e instanceof CancellationException)) {
if (!(e instanceof IllegalStateException)) {
mListener.onQRCodeReaderFail();
}
}
Expand Down

0 comments on commit fc219fd

Please sign in to comment.