fix(core): add missing semicolon into the passphrase entry for TS3

pull/3482/head
grdddj 5 months ago committed by Jiří Musil
parent c09f9e88e2
commit c2eaaaf8b5

@ -0,0 +1 @@
[T2B1] Add missing semicolon character to the passphrase entry

@ -31,7 +31,7 @@ const MAX_PASSPHRASE_LENGTH: usize = 50;
const DIGITS: &str = "0123456789";
const LOWERCASE_LETTERS: &str = "abcdefghijklmnopqrstuvwxyz";
const UPPERCASE_LETTERS: &str = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
const SPECIAL_SYMBOLS: &str = "_<>.:@/|\\!()+%&-[]?{},\'`\"~$^=*#";
const SPECIAL_SYMBOLS: &str = "_<>.:@/|\\!()+%&-[]?{},\'`;\"~$^=*#";
const MENU_LENGTH: usize = 8;
const SHOW_INDEX: usize = 0;

Loading…
Cancel
Save