Merge pull request #51 from AttorneyOnline/fix-showname

Fix shownames being set to a single space when the user does not specify one
This commit is contained in:
scatterflower 2021-04-03 16:54:11 -05:00 committed by GitHub
commit c6bc2492f5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -512,7 +512,8 @@ AOPacket AOClient::validateIcPacket(AOPacket packet)
if (incoming_args.length() > 15) {
// showname
QString incoming_showname = dezalgo(incoming_args[15].toString().trimmed());
if (incoming_showname.length() == 0)
// if the raw input is not empty but the trimmed input is, use a single space
if (incoming_showname.isEmpty() && !incoming_args[15].toString().isEmpty())
incoming_showname = " ";
args.append(incoming_showname);
showname = incoming_showname;