diff options
author | Morris Jobke <hey@morrisjobke.de> | 2016-01-05 11:41:06 +0100 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2016-01-06 13:46:55 +0100 |
commit | 553a981980571930a935a2e85895396f2813ae44 (patch) | |
tree | 60123f26be6f6303ce90860d82d34f97c9cbbda2 /apps/user_ldap/lib | |
parent | 12b0e9e3bdd6de2d35165a52072d534c7c2f5fc2 (diff) | |
download | nextcloud-server-553a981980571930a935a2e85895396f2813ae44.tar.gz nextcloud-server-553a981980571930a935a2e85895396f2813ae44.zip |
Make LDAP more robust to exceptions and log them properly
Diffstat (limited to 'apps/user_ldap/lib')
-rw-r--r-- | apps/user_ldap/lib/user/user.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/user_ldap/lib/user/user.php b/apps/user_ldap/lib/user/user.php index 0dc3c8c0c26..7a121920a35 100644 --- a/apps/user_ldap/lib/user/user.php +++ b/apps/user_ldap/lib/user/user.php @@ -474,8 +474,8 @@ class User { $this->fs->setup($this->uid); } - $avatar = $this->avatarManager->getAvatar($this->uid); try { + $avatar = $this->avatarManager->getAvatar($this->uid); $avatar->set($this->image); } catch (\Exception $e) { \OC::$server->getLogger()->notice( |