summaryrefslogtreecommitdiffstats
path: root/webapp/components/notify_counts.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/components/notify_counts.jsx')
-rw-r--r--webapp/components/notify_counts.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/webapp/components/notify_counts.jsx b/webapp/components/notify_counts.jsx
index 8f9eadab7..6ccbd228b 100644
--- a/webapp/components/notify_counts.jsx
+++ b/webapp/components/notify_counts.jsx
@@ -7,7 +7,7 @@ import ChannelStore from 'stores/channel_store.jsx';
function getCountsStateFromStores() {
var count = 0;
var channels = ChannelStore.getAll();
- var members = ChannelStore.getAllMembers();
+ var members = ChannelStore.getMyMembers();
channels.forEach((channel) => {
var channelMember = members[channel.id];