mirror of https://github.com/status-im/codimd.git
Update to use bigger size of profile image
This commit is contained in:
parent
6405bb5056
commit
f3418a619c
|
@ -61,7 +61,7 @@ module.exports = function (sequelize, DataTypes) {
|
|||
var photo = null;
|
||||
switch (profile.provider) {
|
||||
case "facebook":
|
||||
photo = 'https://graph.facebook.com/' + profile.id + '/picture';
|
||||
photo = 'https://graph.facebook.com/' + profile.id + '/picture?width=96';
|
||||
break;
|
||||
case "twitter":
|
||||
photo = 'https://twitter.com/' + profile.username + '/profile_image?size=bigger';
|
||||
|
@ -70,11 +70,11 @@ module.exports = function (sequelize, DataTypes) {
|
|||
photo = 'https://avatars.githubusercontent.com/u/' + profile.id + '?s=96';
|
||||
break;
|
||||
case "gitlab":
|
||||
photo = profile.avatarUrl;
|
||||
photo = profile.avatarUrl.replace(/(\?s=)\d*$/i, '$196');
|
||||
break;
|
||||
case "dropbox":
|
||||
//no image api provided, use gravatar
|
||||
photo = 'https://www.gravatar.com/avatar/' + md5(profile.emails[0].value);
|
||||
photo = 'https://www.gravatar.com/avatar/' + md5(profile.emails[0].value) + '?s=96';
|
||||
break;
|
||||
case "google":
|
||||
photo = profile.photos[0].value.replace(/(\?sz=)\d*$/i, '$196');
|
||||
|
|
Loading…
Reference in New Issue