Commit dbf8a767 authored by NGPixel's avatar NGPixel

Fixed issue with social accounts with empty name

parent 95839533
......@@ -6,6 +6,7 @@
[![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)
[![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)
[![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)
......@@ -42,7 +43,7 @@
- [x] Documentation
- [x] Prerequisites
- [x] Install
- [ ] Authentication
- [x] Authentication
- [x] Git
- [x] Upgrade
- [x] Edit Entry
......
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment