remove absent users from the userlist

This commit is contained in:
ansuz 2016-10-19 12:30:25 +02:00
parent 8eea58ecdd
commit 46c5f64369

View file

@ -250,9 +250,16 @@ define([
};
var initializing = true;
var userList = {}; // List of pretty name of all users (mapped with their server ID)
var userList = module.userList = {}; // List of pretty name of all users (mapped with their server ID)
var toolbarList; // List of users still connected to the channel (server IDs)
var addToUserList = function(data) {
var users = module.users;
if (users && users.length) {
for (var userKey in userList) {
if (users.indexOf(userKey) === -1) { delete userList[userKey]; }
}
}
for (var attrname in data) { userList[attrname] = data[attrname]; }
if(toolbarList && typeof toolbarList.onChange === "function") {
toolbarList.onChange(userList);
@ -603,6 +610,7 @@ define([
//logging: true,
});
module.users = info.userList.users;
module.realtime = info.realtime;
var shjson = info.realtime.getUserDoc();