Appease clang

This commit is contained in:
Salanto 2022-12-16 01:23:27 +01:00
parent 4470bf34ef
commit cf9d53d7b3
2 changed files with 2 additions and 2 deletions

View File

@ -126,7 +126,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.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)) {

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.size() > 0 && !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.");