fix: use first email address in Rocket.Chat auth response (#3122)

This commit is contained in:
Beh 2021-09-30 02:42:48 +02:00 committed by GitHub
parent 3814eef922
commit ed3925b1c5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -23,7 +23,7 @@ module.exports = {
cb(null, {
id: usr._id,
displayName: _.isEmpty(usr.name) ? usr.username : usr.name,
email: usr.email,
email: usr.emails[0].address,
picture: usr.avatarUrl
})
} catch (err) {