Merge pull request #906 from SISheogorath/fix/letterAvatarMail

Fix possible weird objects as email
This commit is contained in:
Christoph (Sheogorath) Kern
2018-09-05 11:36:29 +01:00
committed by GitHub

View File

@@ -27,6 +27,10 @@ exports.generateAvatar = function (name) {
exports.generateAvatarURL = function (name, email = '', big = true) {
let photo
if (typeof email !== 'string') {
email = '' + name + '@example.com'
}
if (email !== '' && config.allowGravatar) {
photo = 'https://www.gravatar.com/avatar/' + md5(email.toLowerCase())
if (big) {