fixes "other" category for presence graph

v1.18.x
psychobunny 10 years ago
parent 704aeea3f1
commit 780838c579

@ -120,13 +120,17 @@ SocketMeta.rooms.getAll = function(socket, data, callback) {
} }
} else if (room.match(/^category/)) { } else if (room.match(/^category/)) {
socketData.users.category += roomClients[room].length; socketData.users.category += roomClients[room].length;
} else if (room !== 'categories' && room !== 'recent_posts') {
socketData.users.other += roomClients[room].length;
} }
} }
} }
for (var i in socketData.users) {
if (socketData.users.hasOwnProperty(i)) {
socketData.users.other -= socketData.users[i];
}
}
socketData.users.other += roomClients['online_users'].length;
var scoreKeys = Object.keys(scores), var scoreKeys = Object.keys(scores),
mostActive = scoreKeys.sort(); mostActive = scoreKeys.sort();

Loading…
Cancel
Save