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:
commit
6292aacedc
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue