mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-01-02 22:00:34 +01:00
fixes #5894
This commit is contained in:
@@ -28,9 +28,11 @@ app.isConnected = false;
|
||||
setTimeout(socket.connect.bind(socket), parseInt(config.reconnectionDelay, 10) * 10);
|
||||
});
|
||||
|
||||
socket.on('checkSession', function (uid) {
|
||||
if (parseInt(uid, 10) !== parseInt(app.user.uid, 10)) {
|
||||
socket.on('checkSession', function (uid, remoteExist) {
|
||||
if (parseInt(uid, 10) !== parseInt(app.user.uid, 10) && remoteExist) {
|
||||
app.handleInvalidSession();
|
||||
} else {
|
||||
app.logout();
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
@@ -75,15 +75,17 @@ function onConnection(socket) {
|
||||
}
|
||||
|
||||
function onConnect(socket) {
|
||||
if (socket.uid) {
|
||||
socket.join('uid_' + socket.uid);
|
||||
socket.join('online_users');
|
||||
} else {
|
||||
socket.join('online_guests');
|
||||
}
|
||||
user.exists(socket.uid, function (err, exists) {
|
||||
if (socket.uid) {
|
||||
socket.join('uid_' + socket.uid);
|
||||
socket.join('online_users');
|
||||
} else {
|
||||
socket.join('online_guests');
|
||||
}
|
||||
|
||||
socket.join('sess_' + socket.request.signedCookies[nconf.get('sessionKey')]);
|
||||
io.sockets.sockets[socket.id].emit('checkSession', socket.uid);
|
||||
socket.join('sess_' + socket.request.signedCookies[nconf.get('sessionKey')]);
|
||||
io.sockets.sockets[socket.id].emit('checkSession', socket.uid, exists);
|
||||
});
|
||||
}
|
||||
|
||||
function onMessage(socket, payload) {
|
||||
|
||||
Reference in New Issue
Block a user