Merge branch 'safe-sockets' into soon

pull/1/head
ansuz 2016-10-04 10:59:09 +02:00
commit e1512a4063
1 changed files with 5 additions and 0 deletions

View File

@ -14,7 +14,12 @@ let historyKeeperKeys = {};
const now = function () { return (new Date()).getTime(); };
const socketSendable = function (socket) {
return socket && socket.readyState === 1;
};
const sendMsg = function (ctx, user, msg) {
if (!socketSendable(user.socket)) { return; }
try {
if (ctx.config.logToStdout) { console.log('<' + JSON.stringify(msg)); }
user.socket.send(JSON.stringify(msg));