Merge pull request #20039 from nextcloud/fix/19549/fix-uuid-attr-detection

fixes auto-detecting UUID attributes
This commit is contained in:
blizzz 2020-03-20 11:06:37 +01:00 committed by GitHub
commit 5817047c3e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 4 deletions

View File

@ -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']);