Merge pull request #4 from AttorneyOnline/fix-showname

fix showname being set to " " when it shouldn't
This commit is contained in:
MangosArentLiterature 2021-04-03 13:16:46 -05:00 committed by GitHub
commit 10745f110f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -511,7 +511,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;