summaryrefslogtreecommitdiff
path: root/lib/web
diff options
context:
space:
mode:
authorFelix Schäfer2018-03-09 14:37:03 +0100
committerFelix Schäfer2018-03-09 14:39:08 +0100
commit12dae4465f66966368ab75285c446f51db0ea4ab (patch)
tree5de4c8c02f5e10b81ce76c59141c3f298e184129 /lib/web
parent21be5a55179f6541f61be9f95bbb69e3c7a6515b (diff)
Multiple emails from LDAP are already an Array
Signed-off-by: Felix Schäfer <felix@thegcat.net>
Diffstat (limited to 'lib/web')
-rw-r--r--lib/web/auth/ldap/index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/web/auth/ldap/index.js b/lib/web/auth/ldap/index.js
index c6746473..1a5c9938 100644
--- a/lib/web/auth/ldap/index.js
+++ b/lib/web/auth/ldap/index.js
@@ -37,7 +37,7 @@ passport.use(new LDAPStrategy({
id: 'LDAP-' + uuid,
username: username,
displayName: user.displayName,
- emails: user.mail ? [user.mail] : [],
+ emails: user.mail ? Array.isArray(user.mail) ? user.mail : [user.mail] : [],
avatarUrl: null,
profileUrl: null,
provider: 'ldap'