Fixed issue with social accounts with empty name

This commit is contained in:
NGPixel
2017-02-07 14:36:10 -05:00
parent 958395335c
commit dbf8a767a4
2 changed files with 3 additions and 2 deletions

View File

@@ -65,7 +65,7 @@ userSchema.statics.processProfile = (profile) => {
email: primaryEmail,
provider: profile.provider,
providerId: profile.id,
name: profile.displayName
name: profile.displayName || _.split(primaryEmail, '@')[0]
}, {
new: true,
upsert: true