Fixed an incorrect null check.
Dieser Commit ist enthalten in:
Ursprung
36f867cafa
Commit
9482818751
@ -540,7 +540,7 @@ public class AsyncListenerHandler {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (packet != null && packet.getAsyncMarker() == null) {
|
if (packet != null && packet.getAsyncMarker() != null) {
|
||||||
processPacket(workerID, packet, "onAsyncPacket()");
|
processPacket(workerID, packet, "onAsyncPacket()");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
In neuem Issue referenzieren
Einen Benutzer sperren