Skip to content

Commit

Permalink
Fix named overlay (#22)
Browse files Browse the repository at this point in the history
Co-authored-by: Evan <[email protected]>
  • Loading branch information
evanwsu and Evan authored Apr 3, 2024
1 parent a07b229 commit 26517c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/src/common/character_set_eci.dart
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,8 @@ class CharacterSetECI {
static CharacterSetECI findByName(String name) {
name = name.toLowerCase();
for (var set in all) {
for (var name in set.encodingNames) {
if (name.toLowerCase() == name) {
for (var na in set.encodingNames) {
if (na.toLowerCase() == name) {
return set;
}
}
Expand Down

0 comments on commit 26517c4

Please sign in to comment.