summaryrefslogtreecommitdiffstats
path: root/api/user.go
diff options
context:
space:
mode:
authorCorey Hulen <corey@hulen.com>2016-12-13 19:23:36 -0800
committerenahum <nahumhbl@gmail.com>2016-12-14 00:23:36 -0300
commitaacbe995483b694e169acdc63136171dff3725d9 (patch)
treee60e67a1378ce929f42e41a49c2215a0289eae78 /api/user.go
parent51b794501e21e1d19a58bb6dc273a5425c03a107 (diff)
downloadchat-aacbe995483b694e169acdc63136171dff3725d9.tar.gz
chat-aacbe995483b694e169acdc63136171dff3725d9.tar.bz2
chat-aacbe995483b694e169acdc63136171dff3725d9.zip
PLT-4982 Adding caching to user profiles (#4782)
Diffstat (limited to 'api/user.go')
-rw-r--r--api/user.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/api/user.go b/api/user.go
index 0e74a577c..84d3641f2 100644
--- a/api/user.go
+++ b/api/user.go
@@ -2735,7 +2735,7 @@ func getProfilesByIds(c *Context, w http.ResponseWriter, r *http.Request) {
return
}
- if result := <-Srv.Store.User().GetProfileByIds(userIds); result.Err != nil {
+ if result := <-Srv.Store.User().GetProfileByIds(userIds, true); result.Err != nil {
c.Err = result.Err
return
} else {