From f3418a619ca672d52136e8ddd0846ea56a876904 Mon Sep 17 00:00:00 2001
From: "Cheng-Han, Wu" <jackymaxj@gmail.com>
Date: Sat, 21 May 2016 22:48:21 +0800
Subject: [PATCH] Update to use bigger size of profile image

---
 lib/models/user.js | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/lib/models/user.js b/lib/models/user.js
index 3142a53d7..7272f688a 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');