From 64f26555799c2920255f3ad8daa9c14935f20401 Mon Sep 17 00:00:00 2001 From: =Corey Hulen Date: Fri, 8 Sep 2017 13:44:39 -0700 Subject: [PATCH] PLT-7558 Fixing perf issues for profile on master --- utils/utils.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/utils.jsx b/utils/utils.jsx index 9bfd22e072cc..1a9fbb3a4464 100644 --- a/utils/utils.jsx +++ b/utils/utils.jsx @@ -1070,7 +1070,7 @@ export function imageURLForUser(userIdOrObject) { if (profile) { return imageURLForUser(profile); } - return Client4.getUsersRoute() + '/' + userIdOrObject + '/image?_=' + Date.now(); + return Client4.getUsersRoute() + '/' + userIdOrObject + '/image?_=0'; } return Client4.getUsersRoute() + '/' + userIdOrObject.id + '/image?_=' + (userIdOrObject.last_picture_update || 0); }