null users dont exist
Signed-off-by: Robin Appelman <robin@icewind.nl>
This commit is contained in:
parent
f71457782b
commit
5185a3c0c9
|
@ -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
|
* @return \OC\User\User|null Either the user or null if the specified user does not exist
|
||||||
*/
|
*/
|
||||||
public function get($uid) {
|
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
|
if (isset($this->cachedUsers[$uid])) { //check the cache first to prevent having to loop over the backends
|
||||||
return $this->cachedUsers[$uid];
|
return $this->cachedUsers[$uid];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue