mirror of
https://github.com/nextcloud/server.git
synced 2026-04-27 01:00:20 -04:00
fixes auto-detecting UUID attributes
the continue (and later the early return) avoided proper looping over the attribute candidates. Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
This commit is contained in:
parent
ee5ed6a3ed
commit
29495f0c6d
1 changed files with 0 additions and 4 deletions
|
|
@ -1734,7 +1734,6 @@ class Access extends LDAPUtility {
|
|||
$this->connection->$uuidAttr = $attribute;
|
||||
return true;
|
||||
}
|
||||
continue;
|
||||
}
|
||||
|
||||
$value = $this->readAttribute($dn, $attribute);
|
||||
|
|
@ -1750,9 +1749,6 @@ class Access extends LDAPUtility {
|
|||
$this->connection->$uuidAttr = $attribute;
|
||||
$this->connection->writeToCache($uuidAttr, $attribute);
|
||||
return true;
|
||||
} elseif ($value === false) {
|
||||
// record not available
|
||||
return false;
|
||||
}
|
||||
}
|
||||
\OC::$server->getLogger()->debug('Could not autodetect the UUID attribute', ['app' => 'user_ldap']);
|
||||
|
|
|
|||
Loading…
Reference in a new issue