summaryrefslogtreecommitdiffstats
path: root/api
diff options
context:
space:
mode:
authorJoramWilander <jwawilander@gmail.com>2015-12-07 15:22:50 -0500
committerJoramWilander <jwawilander@gmail.com>2015-12-07 15:22:50 -0500
commit2b0cd7e619651c6c6a01b405512fd725f092e71d (patch)
treee004f6feb0bb88e6a8c50ca0670072dc8b3e5815 /api
parentea1bbff3c8d2b76c1ff782503ab5365922a65423 (diff)
downloadchat-2b0cd7e619651c6c6a01b405512fd725f092e71d.tar.gz
chat-2b0cd7e619651c6c6a01b405512fd725f092e71d.tar.bz2
chat-2b0cd7e619651c6c6a01b405512fd725f092e71d.zip
Return 100 channel users in extra info call
Diffstat (limited to 'api')
-rw-r--r--api/channel.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/api/channel.go b/api/channel.go
index 659121bf0..f17594c0a 100644
--- a/api/channel.go
+++ b/api/channel.go
@@ -740,7 +740,7 @@ func getChannelExtraInfo(c *Context, w http.ResponseWriter, r *http.Request) {
}
scm := Srv.Store.Channel().GetMember(id, c.Session.UserId)
- ecm := Srv.Store.Channel().GetExtraMembers(id, 20)
+ ecm := Srv.Store.Channel().GetExtraMembers(id, 100)
ccm := Srv.Store.Channel().GetMemberCount(id)
if cmresult := <-scm; cmresult.Err != nil {