strike counter

This commit is contained in:
2025-02-09 15:23:52 -06:00
parent 5a161a0808
commit 685dc572e8
3 changed files with 38 additions and 47 deletions
+3 -1
View File
@@ -1858,11 +1858,13 @@ public class ClientMessagePump implements NetMsgHandler {
@Override
public boolean handleClientMsg(ClientNetMsg msg) {
if (msg == null || !KeyCloneAudit.auditNetMsg(msg)) {
if (msg == null) {
Logger.error("handleClientMsg", "Recieved null msg. Returning.");
return false;
}
KeyCloneAudit.auditNetMsg(msg);
ClientConnection origin;
Protocol protocolMsg = Protocol.NONE;
Session s;