mirror of
https://github.com/nextcloud/server.git
synced 2026-04-21 06:08:46 -04:00
Initial fix for #15494
This commit is contained in:
parent
7ce4d2dec9
commit
2b8fc774d0
1 changed files with 1 additions and 1 deletions
|
|
@ -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 a new issue