summaryrefslogtreecommitdiffstats
path: root/web/react/dispatcher
diff options
context:
space:
mode:
authorHarrison Healey <harrisonmhealey@gmail.com>2016-01-27 12:50:19 -0500
committerHarrison Healey <harrisonmhealey@gmail.com>2016-01-27 12:50:19 -0500
commitceebfe20ba2c84d98344db650c5a856b9fba02fc (patch)
treea579da50e9e38fd4dd7026ae976502849de79999 /web/react/dispatcher
parente467241a10e75c583c4d9ee0a4c6205a1175fab1 (diff)
parent1575488650f4d6df49820043af68e57489c66a46 (diff)
downloadchat-ceebfe20ba2c84d98344db650c5a856b9fba02fc.tar.gz
chat-ceebfe20ba2c84d98344db650c5a856b9fba02fc.tar.bz2
chat-ceebfe20ba2c84d98344db650c5a856b9fba02fc.zip
Merge pull request #1996 from mattermost/plt-1768
PLT-1768 Clear deleted messages after channel leave and fix missig postlist error
Diffstat (limited to 'web/react/dispatcher')
-rw-r--r--web/react/dispatcher/event_helpers.jsx3
1 files changed, 2 insertions, 1 deletions
diff --git a/web/react/dispatcher/event_helpers.jsx b/web/react/dispatcher/event_helpers.jsx
index a03923c1a..5eb319320 100644
--- a/web/react/dispatcher/event_helpers.jsx
+++ b/web/react/dispatcher/event_helpers.jsx
@@ -19,7 +19,8 @@ export function emitChannelClickEvent(channel) {
AppDispatcher.handleViewAction({
type: ActionTypes.CLICK_CHANNEL,
name: channel.name,
- id: channel.id
+ id: channel.id,
+ prev: ChannelStore.getCurrentId()
});
}