mirror of https://github.com/status-im/codimd.git
Merge pull request #906 from SISheogorath/fix/letterAvatarMail
Fix possible weird objects as email
This commit is contained in:
commit
007f252273
|
@ -27,6 +27,10 @@ exports.generateAvatar = function (name) {
|
||||||
|
|
||||||
exports.generateAvatarURL = function (name, email = '', big = true) {
|
exports.generateAvatarURL = function (name, email = '', big = true) {
|
||||||
let photo
|
let photo
|
||||||
|
if (typeof email !== 'string') {
|
||||||
|
email = '' + name + '@example.com'
|
||||||
|
}
|
||||||
|
|
||||||
if (email !== '' && config.allowGravatar) {
|
if (email !== '' && config.allowGravatar) {
|
||||||
photo = 'https://www.gravatar.com/avatar/' + md5(email.toLowerCase())
|
photo = 'https://www.gravatar.com/avatar/' + md5(email.toLowerCase())
|
||||||
if (big) {
|
if (big) {
|
||||||
|
|
Loading…
Reference in New Issue