From 5d6cf3ace5871aaa6b91abbc92bb90871be672bb Mon Sep 17 00:00:00 2001 From: Joram Wilander Date: Tue, 4 Apr 2017 20:07:51 -0400 Subject: Remove unnecessary uses of getMoreChannels (#5982) --- webapp/components/channel_select.jsx | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'webapp/components/channel_select.jsx') diff --git a/webapp/components/channel_select.jsx b/webapp/components/channel_select.jsx index ad0abd501..49c1edfef 100644 --- a/webapp/components/channel_select.jsx +++ b/webapp/components/channel_select.jsx @@ -7,7 +7,6 @@ import Constants from 'utils/constants.jsx'; import ChannelStore from 'stores/channel_store.jsx'; import * as Utils from 'utils/utils.jsx'; import {sortChannelsByDisplayName} from 'utils/channel_utils.jsx'; -import * as AsyncClient from 'utils/async_client.jsx'; export default class ChannelSelect extends React.Component { static get propTypes() { @@ -34,8 +33,6 @@ export default class ChannelSelect extends React.Component { this.handleChannelChange = this.handleChannelChange.bind(this); this.filterChannels = this.filterChannels.bind(this); - AsyncClient.getMoreChannels(true); - this.state = { channels: ChannelStore.getAll().filter(this.filterChannels).sort(sortChannelsByDisplayName) }; @@ -51,7 +48,7 @@ export default class ChannelSelect extends React.Component { handleChannelChange() { this.setState({ - channels: ChannelStore.getAll().concat(ChannelStore.getMoreAll()). + channels: ChannelStore.getAll(). filter(this.filterChannels).sort(sortChannelsByDisplayName) }); } -- cgit v1.2.3-1-g7c22