summaryrefslogtreecommitdiffstats
path: root/web
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2016-02-13 10:30:50 -0500
committerChristopher Speller <crspeller@gmail.com>2016-02-13 10:30:50 -0500
commitc71c5cef632c7dc68072167c6fe091a60835fa02 (patch)
treec7ded26986345115892a9a0a7327ca7eb022e805 /web
parent4721e5cd2b4016041ad5ae4b9e1d833e8575acc9 (diff)
parent4e8da24777b48d3e3f57214b44e0dd9f7d2bcec5 (diff)
downloadchat-c71c5cef632c7dc68072167c6fe091a60835fa02.tar.gz
chat-c71c5cef632c7dc68072167c6fe091a60835fa02.tar.bz2
chat-c71c5cef632c7dc68072167c6fe091a60835fa02.zip
Merge pull request #2161 from mattermost/load-more-fix
RC3 Fix load more messages being broken by getPostsSince call
Diffstat (limited to 'web')
-rw-r--r--web/react/utils/async_client.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/react/utils/async_client.jsx b/web/react/utils/async_client.jsx
index 45cdf699f..13b57092d 100644
--- a/web/react/utils/async_client.jsx
+++ b/web/react/utils/async_client.jsx
@@ -549,7 +549,7 @@ export function getPosts(id) {
type: ActionTypes.RECEIVED_POSTS,
id: channelId,
before: true,
- numRequested: Constants.POST_CHUNK_SIZE,
+ numRequested: 0,
post_list: data
});