summaryrefslogtreecommitdiffstats
path: root/webapp/actions/global_actions.jsx
diff options
context:
space:
mode:
authorenahum <nahumhbl@gmail.com>2016-06-07 18:43:36 -0300
committerJoram Wilander <jwawilander@gmail.com>2016-06-07 17:43:36 -0400
commit3a6694cc6b52ba0022a92373df9f07b7bf080240 (patch)
tree88a5dbeab00fbd64bd16d732a039d074735b069c /webapp/actions/global_actions.jsx
parentbde432645882c2c328fd3821c8dbcd968677a13a (diff)
downloadchat-3a6694cc6b52ba0022a92373df9f07b7bf080240.tar.gz
chat-3a6694cc6b52ba0022a92373df9f07b7bf080240.tar.bz2
chat-3a6694cc6b52ba0022a92373df9f07b7bf080240.zip
PLT-3203 Commenting on the RHS while in permalink view makes the message not show up in the RHS (#3282)
Diffstat (limited to 'webapp/actions/global_actions.jsx')
-rw-r--r--webapp/actions/global_actions.jsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/webapp/actions/global_actions.jsx b/webapp/actions/global_actions.jsx
index 0b264a9b3..165d655e4 100644
--- a/webapp/actions/global_actions.jsx
+++ b/webapp/actions/global_actions.jsx
@@ -138,8 +138,8 @@ export function doFocusPost(channelId, postId, data) {
});
AsyncClient.getChannels(true);
AsyncClient.getChannelExtraInfo(channelId);
- AsyncClient.getPostsBefore(postId, 0, Constants.POST_FOCUS_CONTEXT_RADIUS);
- AsyncClient.getPostsAfter(postId, 0, Constants.POST_FOCUS_CONTEXT_RADIUS);
+ AsyncClient.getPostsBefore(postId, 0, Constants.POST_FOCUS_CONTEXT_RADIUS, true);
+ AsyncClient.getPostsAfter(postId, 0, Constants.POST_FOCUS_CONTEXT_RADIUS, true);
}
export function emitPostFocusEvent(postId) {