mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-04-18 15:17:07 +02:00
fix typo
This commit is contained in:
parent
c16d820b88
commit
a84ca00270
1 changed files with 1 additions and 1 deletions
|
@ -101,7 +101,7 @@ bool ValueParser::readTag() {
|
|||
auto isTagChar = [](QChar ch) {
|
||||
if (ch >= 'a' && ch <= 'z') {
|
||||
return true;
|
||||
} else if (ch >= 'A' && ch <= 'z') {
|
||||
} else if (ch >= 'A' && ch <= 'Z') {
|
||||
return true;
|
||||
} else if (ch >= '0' && ch <= '9') {
|
||||
return true;
|
||||
|
|
Loading…
Add table
Reference in a new issue