Protocol handler code update

This commit is contained in:
2024-03-31 10:54:33 -04:00
parent 5aa01d94fd
commit 7acaccc77d
+3 -3
View File
@@ -300,13 +300,13 @@ public enum Protocol {
if (protocol == null)
return true;
AbstractClientMsgHandler msgHandler = protocol.handler;
// Eat this message; no or empty handler
if (msgHandler == null)
if (protocol.handler == null)
return true;
protocol.handler.handleNetMsg(msg);
} catch (Exception e) {
Logger.error("handler for " + msg.getProtocolMsg() + " failed: " + e);
return false;