Skip to content

Commit 8519389

Browse files
authored
Merge pull request #26 from unicode-rs/ascii-only
Fix ascii only detection
2 parents 1a8846e + bbb3733 commit 8519389

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)