未验证 提交 25d11ddd 编写于 作者: L Laurent Ellerbach 提交者: GitHub

Fixing exception in decoding credit card information (#1011)

上级 929f82aa
......@@ -43,7 +43,7 @@ namespace Iot.Device.Card.CreditCardProcessing
index += resSize.Item1;
}
catch (ArgumentOutOfRangeException)
catch (Exception ex) when (ex is ArgumentOutOfRangeException || ex is OverflowException)
{
// We may have a non supported Tag
break;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册