Remove empty packets

This commit is contained in:
Salanto 2022-12-16 01:20:24 +01:00
parent 6c3f696aaf
commit 4470bf34ef
2 changed files with 2 additions and 1 deletions

View File

@ -127,6 +127,7 @@ void NetworkSocket::ws_readData(QString f_data)
QStringList l_all_packets = l_data.split("%");
l_all_packets.removeLast(); // Remove the entry after the last delimiter
l_all_packets.removeAll({}); // Remove empty or null strings.
if (l_all_packets.value(0).startsWith("MC", Qt::CaseInsensitive)) {
l_all_packets = QStringList{l_all_packets.value(0)};

View File

@ -29,7 +29,7 @@ void PacketZZ::handlePacket(AreaData *area, AOClient &client) const
QString l_modcallNotice = "!!!MODCALL!!!\nArea: " + l_areaName + "\nCaller: " + l_name + "\n";
if (!m_content[0].isEmpty())
if (m_content.size() > 0 && !m_content[0].isEmpty())
l_modcallNotice.append("Reason: " + m_content[0]);
else
l_modcallNotice.append("No reason given.");