forked from External/mage
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
|
|
@ -101,7 +101,11 @@ public class ServerImpl extends RemoteServer implements Server {
|
|||
|
||||
@Override
|
||||
public ClientCallback callback(UUID sessionId) {
|
||||
return SessionManager.getInstance().getSession(sessionId).callback();
|
||||
Session session = SessionManager.getInstance().getSession(sessionId);
|
||||
if (session == null) {
|
||||
return null;
|
||||
}
|
||||
return session.callback();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue