Skip to content

Commit

Permalink
fix: read Encrypted error
Browse files Browse the repository at this point in the history
  • Loading branch information
mumu-lhl committed Aug 17, 2024
1 parent 41229f7 commit 518ec9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/dict_reader_base.dart
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ class DictReader {
} else if (tags["Encrypted"] == "Yes") {
_encrypt = 1;
} else {
_encrypt = 2;
_encrypt = int.parse(tags["Encrypted"]!);
}

// stylesheet attribute if present takes form of:
Expand Down

0 comments on commit 518ec9a

Please sign in to comment.