mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-10 23:36:14 -05:00
Adding size param to contrib images
no issue - reduces filesize significantly, whilst not impacting quality
This commit is contained in:
parent
bb23fdaeb6
commit
0127dd9e6c
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