summaryrefslogtreecommitdiffstats
path: root/webapp/components/sidebar.jsx
diff options
context:
space:
mode:
authorJoram Wilander <jwawilander@gmail.com>2017-05-03 11:54:47 -0400
committerCorey Hulen <corey@hulen.com>2017-05-03 08:54:47 -0700
commit6a6c5365d335666b5f76b92d1f41314e6873197f (patch)
treea9e2665ae7f3bb8401d93194b8549edada7c79de /webapp/components/sidebar.jsx
parentaa65478445b79fd8fa9f5ceadd7715e8ba3a9576 (diff)
downloadchat-6a6c5365d335666b5f76b92d1f41314e6873197f.tar.gz
chat-6a6c5365d335666b5f76b92d1f41314e6873197f.tar.bz2
chat-6a6c5365d335666b5f76b92d1f41314e6873197f.zip
Fix DMs not being removed until re-render (#6305)
Diffstat (limited to 'webapp/components/sidebar.jsx')
-rw-r--r--webapp/components/sidebar.jsx7
1 files changed, 6 insertions, 1 deletions
diff --git a/webapp/components/sidebar.jsx b/webapp/components/sidebar.jsx
index 7d3ab148e..b48d5a8f5 100644
--- a/webapp/components/sidebar.jsx
+++ b/webapp/components/sidebar.jsx
@@ -40,6 +40,9 @@ import {browserHistory, Link} from 'react-router/es6';
import favicon from 'images/favicon/favicon-16x16.png';
import redFavicon from 'images/favicon/redfavicon-16x16.png';
+import store from 'stores/redux_store.jsx';
+import * as Selectors from 'mattermost-redux/selectors/entities/preferences';
+
export default class Sidebar extends React.Component {
constructor(props) {
super(props);
@@ -117,12 +120,14 @@ export default class Sidebar extends React.Component {
const tutorialStep = PreferenceStore.getInt(Preferences.TUTORIAL_STEP, UserStore.getCurrentId(), 999);
const channels = ChannelStore.getAll();
+ const preferences = Selectors.getMyPreferences(store.getState());
let displayableChannels = {};
- if (channels !== this.oldChannels) {
+ if (channels !== this.oldChannels || preferences !== this.oldPreferences) {
const channelsArray = channels.map((channel) => Object.assign({}, channel));
displayableChannels = ChannelUtils.buildDisplayableChannelList(channelsArray);
}
this.oldChannels = channels;
+ this.oldPreferences = preferences;
return {
activeId: currentChannelId,