summaryrefslogtreecommitdiffstats
path: root/webapp/stores/channel_store.jsx
diff options
context:
space:
mode:
authorJoram Wilander <jwawilander@gmail.com>2017-02-13 15:19:41 -0500
committerCorey Hulen <corey@hulen.com>2017-02-13 15:19:41 -0500
commit06f89cea302bc2d634044cbab6c8a5c5b369ff02 (patch)
tree0ac873005c5c67496b5e0c476d52108888f4cef0 /webapp/stores/channel_store.jsx
parent892f8f4651234631a4f83648334cf14f6da323b2 (diff)
downloadchat-06f89cea302bc2d634044cbab6c8a5c5b369ff02.tar.gz
chat-06f89cea302bc2d634044cbab6c8a5c5b369ff02.tar.bz2
chat-06f89cea302bc2d634044cbab6c8a5c5b369ff02.zip
Final fixes for moving unread handling to client (#5392)
Diffstat (limited to 'webapp/stores/channel_store.jsx')
-rw-r--r--webapp/stores/channel_store.jsx5
1 files changed, 5 insertions, 0 deletions
diff --git a/webapp/stores/channel_store.jsx b/webapp/stores/channel_store.jsx
index ba6620750..aacc23305 100644
--- a/webapp/stores/channel_store.jsx
+++ b/webapp/stores/channel_store.jsx
@@ -10,6 +10,7 @@ import UserStore from 'stores/user_store.jsx';
var Utils;
import {ActionTypes, Constants} from 'utils/constants.jsx';
const NotificationPrefs = Constants.NotificationPrefs;
+const PostTypes = Constants.PostTypes;
const CHANGE_EVENT = 'change';
const STATS_EVENT = 'stats';
@@ -500,6 +501,10 @@ ChannelStore.dispatchToken = AppDispatcher.register((payload) => {
break;
case ActionTypes.RECEIVED_POST:
+ if (action.post.type === PostTypes.JOIN_LEAVE || action.post.type === PostTypes.JOIN_CHANNEL || action.post.type === PostTypes.LEAVE_CHANNEL) {
+ return;
+ }
+
var id = action.post.channel_id;
var teamId = action.websocketMessageProps ? action.websocketMessageProps.team_id : null;