Fixed issue with social accounts with empty name
This commit is contained in:
parent
958395335c
commit
dbf8a767a4
@ -6,6 +6,7 @@
|
|||||||
|
|
||||||
[![Release](https://img.shields.io/github/release/Requarks/wiki.svg?maxAge=3600)](https://github.com/Requarks/wiki/releases)
|
[![Release](https://img.shields.io/github/release/Requarks/wiki.svg?maxAge=3600)](https://github.com/Requarks/wiki/releases)
|
||||||
[![License](https://img.shields.io/badge/license-AGPLv3-blue.svg)](https://github.com/requarks/wiki/blob/master/LICENSE)
|
[![License](https://img.shields.io/badge/license-AGPLv3-blue.svg)](https://github.com/requarks/wiki/blob/master/LICENSE)
|
||||||
|
[![Github All Releases](https://img.shields.io/github/downloads/Requarks/wiki/total.svg)](https://github.com/Requarks/wiki/releases/latest)
|
||||||
[![Build Status](https://travis-ci.org/Requarks/wiki.svg?branch=master)](https://travis-ci.org/Requarks/wiki)
|
[![Build Status](https://travis-ci.org/Requarks/wiki.svg?branch=master)](https://travis-ci.org/Requarks/wiki)
|
||||||
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/1d0217a3153c4595bdedb322263e55c8)](https://www.codacy.com/app/Requarks/wiki)
|
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/1d0217a3153c4595bdedb322263e55c8)](https://www.codacy.com/app/Requarks/wiki)
|
||||||
[![Dependency Status](https://gemnasium.com/badges/github.com/Requarks/wiki.svg)](https://gemnasium.com/github.com/Requarks/wiki)
|
[![Dependency Status](https://gemnasium.com/badges/github.com/Requarks/wiki.svg)](https://gemnasium.com/github.com/Requarks/wiki)
|
||||||
@ -42,7 +43,7 @@
|
|||||||
- [x] Documentation
|
- [x] Documentation
|
||||||
- [x] Prerequisites
|
- [x] Prerequisites
|
||||||
- [x] Install
|
- [x] Install
|
||||||
- [ ] Authentication
|
- [x] Authentication
|
||||||
- [x] Git
|
- [x] Git
|
||||||
- [x] Upgrade
|
- [x] Upgrade
|
||||||
- [x] Edit Entry
|
- [x] Edit Entry
|
||||||
|
@ -65,7 +65,7 @@ userSchema.statics.processProfile = (profile) => {
|
|||||||
email: primaryEmail,
|
email: primaryEmail,
|
||||||
provider: profile.provider,
|
provider: profile.provider,
|
||||||
providerId: profile.id,
|
providerId: profile.id,
|
||||||
name: profile.displayName
|
name: profile.displayName || _.split(primaryEmail, '@')[0]
|
||||||
}, {
|
}, {
|
||||||
new: true,
|
new: true,
|
||||||
upsert: true
|
upsert: true
|
||||||
|
Loading…
Reference in New Issue
Block a user