From f3418a619ca672d52136e8ddd0846ea56a876904 Mon Sep 17 00:00:00 2001 From: Cheng-Han, Wu Date: Sat, 21 May 2016 22:48:21 +0800 Subject: Update to use bigger size of profile image --- lib/models/user.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib') diff --git a/lib/models/user.js b/lib/models/user.js index 3142a53d..7272f688 100644 --- a/lib/models/user.js +++ b/lib/models/user.js @@ -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'); -- cgit v1.2.3