Merge pull request #125 from thelounge/astorije/124-fix-crash

Fix complete crash when refreshing a public instance
This commit is contained in:
Pavel Djundik 2016-02-29 22:42:42 +02:00
commit 70de3de33a
1 changed files with 2 additions and 3 deletions

View File

@ -8,7 +8,6 @@ var io = require("socket.io");
var Helper = require("./helper");
var config = {};
var sockets = null;
var manager = new ClientManager();
module.exports = function(options) {
@ -43,7 +42,7 @@ module.exports = function(options) {
require("./identd").start(config.identd.port);
}
sockets = io(server, {
var sockets = io(server, {
transports: transports
});
@ -182,7 +181,7 @@ function init(socket, client, token) {
function auth(data) {
var socket = this;
if (config.public) {
var client = new Client(sockets);
var client = new Client(manager);
manager.clients.push(client);
socket.on("disconnect", function() {
manager.clients = _.without(manager.clients, client);