mirror of
https://github.com/magefree/mage.git
synced 2026-01-09 20:32:06 -08:00
Fixed possible NPE between callbacks (as client and server are not synchronized between calls)
This commit is contained in:
parent
2977afea2d
commit
c7ae032d5a
2 changed files with 8 additions and 2 deletions
|
|
@ -64,7 +64,9 @@ public class CallbackClientDaemon extends Thread {
|
|||
@Override
|
||||
public void run() {
|
||||
try {
|
||||
client.processCallback(callback);
|
||||
if (callback != null) {
|
||||
client.processCallback(callback);
|
||||
}
|
||||
}
|
||||
catch (Exception ex) {
|
||||
logger.fatal("CallbackClientDaemon error ", ex);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue