Skip to content

Commit

Permalink
fixup! Use strict parsing by default
Browse files Browse the repository at this point in the history
  • Loading branch information
quh4gko8 authored and thestinger committed Jun 4, 2024
1 parent 5a94722 commit f04108c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ static boolean getBooleanFromAsn1(ASN1Encodable asn1Value) {
static boolean getBooleanFromAsn1(ASN1Encodable asn1Value, boolean strict) {
if (asn1Value instanceof ASN1Boolean) {
if (strict) {
Utils.getBooleanFromAsn1Strict((ASN1Boolean) asn1Value);
return Utils.getBooleanFromAsn1Strict((ASN1Boolean) asn1Value);
}
return ((ASN1Boolean) asn1Value).isTrue();
} else {
Expand Down

0 comments on commit f04108c

Please sign in to comment.