This commit is contained in:
Alys
2016-12-04 13:43:49 +10:00
parent 5f5fa5c2eb
commit 0b8def555b
+1 -1
View File
@@ -118,7 +118,7 @@ function _setProfileName (user) {
let localUsername = user.auth.local && user.auth.local.username;
let googleUsername = google && google.displayName;
let anonymous = 'Anonymous';
let anonymous = 'profile name not found';
return localUsername || _getFacebookName(user.auth.facebook) || googleUsername || anonymous;
}