From bbc7e26e7719eb5cea2ae00a1431a147de024251 Mon Sep 17 00:00:00 2001 From: Cheng-Han, Wu Date: Fri, 20 May 2016 02:13:22 +0800 Subject: Update to use bigger avatar image and twitter now use screen_name based profile image url --- lib/models/user.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/models') diff --git a/lib/models/user.js b/lib/models/user.js index 64173cbd..237532c1 100644 --- a/lib/models/user.js +++ b/lib/models/user.js @@ -64,10 +64,10 @@ module.exports = function (sequelize, DataTypes) { photo = 'https://graph.facebook.com/' + profile.id + '/picture'; break; case "twitter": - photo = profile.photos[0].value; + photo = 'https://twitter.com/' + profile.username + '/profile_image?size=bigger'; break; case "github": - photo = 'https://avatars.githubusercontent.com/u/' + profile.id + '?s=48'; + photo = 'https://avatars.githubusercontent.com/u/' + profile.id + '?s=96'; break; case "gitlab": photo = profile.avatarUrl; -- cgit v1.2.3