0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-20 22:42:53 -05:00

Merge pull request #3334 from JohnONolan/BIGGER

Larger default gravatar images
This commit is contained in:
Hannah Wolfe 2014-07-20 18:03:23 +01:00
commit 4fb3b53653

View file

@ -465,7 +465,7 @@ User = ghostBookshelf.Model.extend({
gravatarLookup: function (userData) {
var gravatarUrl = '//www.gravatar.com/avatar/' +
crypto.createHash('md5').update(userData.email.toLowerCase().trim()).digest('hex') +
"?d=404",
"?d=404&s=250",
checkPromise = when.defer();
http.get('http:' + gravatarUrl, function (res) {