mirror of
https://github.com/nextcloud/server.git
synced 2026-06-12 18:21:40 -04:00
Don't remove last user in ldap group when limit is -1
Signed-off-by: Clement Wong <git@clement.hk>
This commit is contained in:
parent
c8973c662e
commit
78571eb0c2
1 changed files with 3 additions and 3 deletions
|
|
@ -829,6 +829,9 @@ class Group_LDAP extends BackendUtility implements \OCP\GroupInterface, IGroupLD
|
|||
return $groupUsers;
|
||||
}
|
||||
|
||||
if ($limit === -1) {
|
||||
$limit = null;
|
||||
}
|
||||
// check for cache of the query without limit and offset
|
||||
$groupUsers = $this->access->connection->getFromCache('usersInGroup-'.$gid.'-'.$search);
|
||||
if(!is_null($groupUsers)) {
|
||||
|
|
@ -837,9 +840,6 @@ class Group_LDAP extends BackendUtility implements \OCP\GroupInterface, IGroupLD
|
|||
return $groupUsers;
|
||||
}
|
||||
|
||||
if($limit === -1) {
|
||||
$limit = null;
|
||||
}
|
||||
$groupDN = $this->access->groupname2dn($gid);
|
||||
if(!$groupDN) {
|
||||
// group couldn't be found, return empty resultset
|
||||
|
|
|
|||
Loading…
Reference in a new issue