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:
commit
c6bc2492f5
@ -512,7 +512,8 @@ AOPacket AOClient::validateIcPacket(AOPacket packet)
|
|||||||
if (incoming_args.length() > 15) {
|
if (incoming_args.length() > 15) {
|
||||||
// showname
|
// showname
|
||||||
QString incoming_showname = dezalgo(incoming_args[15].toString().trimmed());
|
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 = " ";
|
incoming_showname = " ";
|
||||||
args.append(incoming_showname);
|
args.append(incoming_showname);
|
||||||
showname = incoming_showname;
|
showname = incoming_showname;
|
||||||
|
Loading…
Reference in New Issue
Block a user