mirror of
https://github.com/NuSkooler/enigma-bbs.git
synced 2025-07-20 09:45:53 +02:00
Fix non 'ch' issue
This commit is contained in:
parent
9545cb620b
commit
a1167acc03
1 changed files with 1 additions and 1 deletions
|
@ -27,7 +27,7 @@ module.exports = class KeyEntryView extends View {
|
||||||
this.client.term.write(stylizeString(ch, this.textStyle));
|
this.client.term.write(stylizeString(ch, this.textStyle));
|
||||||
}
|
}
|
||||||
|
|
||||||
if(this.caseInsensitive) {
|
if(ch && this.caseInsensitive) {
|
||||||
ch = ch.toUpperCase();
|
ch = ch.toUpperCase();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue