This commit is contained in:
Kolya 2024-04-13 12:45:30 +02:00 committed by John Preston
parent c16d820b88
commit a84ca00270

View file

@ -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;