Merge pull request #5711 from nextcloud/null-user-exist-12

[12] null users dont exist
This commit is contained in:
blizzz 2017-07-14 12:38:27 +02:00 committed by GitHub
commit b9d7c48acf
1 changed files with 3 additions and 0 deletions

View File

@ -126,6 +126,9 @@ class Manager extends PublicEmitter implements IUserManager {
* @return \OC\User\User|null Either the user or null if the specified user does not exist
*/
public function get($uid) {
if (is_null($uid) || $uid === '' || $uid === false) {
return null;
}
if (isset($this->cachedUsers[$uid])) { //check the cache first to prevent having to loop over the backends
return $this->cachedUsers[$uid];
}