summaryrefslogtreecommitdiffstats
path: root/api/channel.go
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2015-12-08 08:18:17 -0500
committerChristopher Speller <crspeller@gmail.com>2015-12-08 08:18:17 -0500
commitd7df0695e3d8f288ccf7593a6f4bd360bffb20d8 (patch)
treece8baacd63bf3c136833db940e1f004b525e243c /api/channel.go
parent38c313c93472fc9d2a313212985f02e8d033c2cc (diff)
parent2b0cd7e619651c6c6a01b405512fd725f092e71d (diff)
downloadchat-d7df0695e3d8f288ccf7593a6f4bd360bffb20d8.tar.gz
chat-d7df0695e3d8f288ccf7593a6f4bd360bffb20d8.tar.bz2
chat-d7df0695e3d8f288ccf7593a6f4bd360bffb20d8.zip
Merge pull request #1636 from mattermost/plt-1354
PLT-1354 Show channel member count up to 100 now
Diffstat (limited to 'api/channel.go')
-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 {