浏览代码

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

Beh 3 年之前
父节点
当前提交
ed3925b1c5
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      server/modules/authentication/rocketchat/authentication.js

+ 1 - 1
server/modules/authentication/rocketchat/authentication.js

@@ -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) {