fix: use first email address when retrieving multiple from LDAP (#2051)

Signed-off-by: Jonas Jöst <jonas@gpplanet.de>
This commit is contained in:
jonasjoest 2020-06-16 06:11:38 +02:00 committed by GitHub
parent 9e08718ee9
commit 3b055f2ed5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -38,7 +38,7 @@ module.exports = {
const user = await WIKI.models.users.processProfile({
profile: {
id: userId,
email: _.get(profile, conf.mappingEmail, ''),
email: String(_.get(profile, conf.mappingEmail, '')).split(',')[0],
displayName: _.get(profile, conf.mappingDisplayName, '???'),
picture: _.get(profile, conf.mappingPicture, '')
},