From 265ac90234a6e69fde4707b79977193fd07afb13 Mon Sep 17 00:00:00 2001 From: Gus Caplan Date: Fri, 23 Dec 2016 12:41:04 -0600 Subject: [PATCH] Update Constants.js (#1014) --- src/util/Constants.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/Constants.js b/src/util/Constants.js index fbecfa378..08f804156 100644 --- a/src/util/Constants.js +++ b/src/util/Constants.js @@ -92,7 +92,7 @@ const Endpoints = exports.Endpoints = { userProfile: (userID) => `${Endpoints.user(userID)}/profile`, avatar: (userID, avatar) => { if (userID === '1') return avatar; - return `${Endpoints.CDN}/avatars/${userID}/${avatar}.${avatar.startsWith('a_') ? 'gif' : 'jpg'}`; + return `${Endpoints.CDN}/avatars/${userID}/${avatar}.${avatar.startsWith('a_') ? 'gif' : 'jpg'}?size=1024`; }, me: `${API}/users/@me`, meGuild: (guildID) => `${Endpoints.me}/guilds/${guildID}`,