Merge pull request #15555 from rullzer/fix_15494
Initial fix for #15494
This commit is contained in:
commit
75adee1ebd
|
@ -48,7 +48,7 @@ var UserList = {
|
|||
* @returns table row created for this user
|
||||
*/
|
||||
add: function (user, sort) {
|
||||
if (this.currentGid && _.indexOf(user.groups, this.currentGid) < 0) {
|
||||
if (this.currentGid && this.currentGid !== '_everyone' && _.indexOf(user.groups, this.currentGid) < 0) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue