2
0
Эх сурвалжийг харах

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

Beh 3 жил өмнө
parent
commit
ed3925b1c5

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