diff --git a/node/handler/PadMessageHandler.js b/node/handler/PadMessageHandler.js index c7cffaa3f..a93c79da7 100644 --- a/node/handler/PadMessageHandler.js +++ b/node/handler/PadMessageHandler.js @@ -887,7 +887,9 @@ function handleClientReady(client, message) function (callback) { //Jump over, if this session is the connection session - if(sessionID != client.id && socketio.sockets.sockets[sessionID] !== undefined) + if(sessionID != client.id && + socketio.sockets.sockets[sessionID] !== undefined && + sessioninfos[sessionID] !== undefined) { //Send this Session the Notification about the new user socketio.sockets.sockets[sessionID].json.send(messageToTheOtherUsers);