Skip to content

Commit bbb3733

Browse files
committed
Fix ascii only detection
1 parent 1a8846e commit bbb3733

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/restriction_level.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ impl RestrictionLevelDetection for &'_ str {
4848
if !GeneralSecurityProfile::identifier_allowed(ch) {
4949
return RestrictionLevel::Unrestricted;
5050
}
51-
if ch.is_ascii() {
51+
if !ch.is_ascii() {
5252
ascii_only = false;
5353
}
5454
let ch_set = ch.into();

0 commit comments

Comments
 (0)