From 09e7ba23e3cf92752236fb12e434735aeb292c15 Mon Sep 17 00:00:00 2001 From: Joram Wilander Date: Wed, 31 May 2017 18:05:17 -0400 Subject: PLT-6658 Ignore correct message types for setting unreads for teams (#6532) * Ignore correct message types for setting unreads for teams * Fix ESLint error --- webapp/stores/team_store.jsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'webapp/stores/team_store.jsx') diff --git a/webapp/stores/team_store.jsx b/webapp/stores/team_store.jsx index 2dc034199..7bb9afb63 100644 --- a/webapp/stores/team_store.jsx +++ b/webapp/stores/team_store.jsx @@ -8,7 +8,6 @@ import ChannelStore from 'stores/channel_store.jsx'; import Constants from 'utils/constants.jsx'; const NotificationPrefs = Constants.NotificationPrefs; -const PostTypes = Constants.PostTypes; import {getSiteURL} from 'utils/url.jsx'; const ActionTypes = Constants.ActionTypes; @@ -430,7 +429,7 @@ TeamStore.dispatchToken = AppDispatcher.register((payload) => { TeamStore.saveStats(action.team_id, action.stats); break; case ActionTypes.RECEIVED_POST: - if (action.post.type === PostTypes.JOIN_LEAVE || action.post.type === PostTypes.JOIN_CHANNEL || action.post.type === PostTypes.LEAVE_CHANNEL) { + if (Constants.IGNORE_POST_TYPES.indexOf(action.post.type) !== -1) { return; } -- cgit v1.2.3-1-g7c22