0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-03-11 02:12:21 -05:00

Merge pull request #4159 from ErisDS/about-image-fix

Adding size param to contrib images
This commit is contained in:
Sebastian Gierlinger 2014-09-25 12:49:29 +02:00
commit 6292aacedc

View file

@ -988,7 +988,7 @@ var _ = require('lodash'),
});
};
return Promise.all(_.map(contributors, function (contributor) {
return downloadImagePromise(contributor.avatarUrl, contributor.name);
return downloadImagePromise(contributor.avatarUrl + '&s=60', contributor.name);
}));
}).catch(function (error) {
grunt.log.error(error);