dont assign member in getInitialState

pull/21833/head
Bruno Windels 2018-09-10 17:39:03 +02:00
parent 92f7e29132
commit 2aaf3e6b89
1 changed files with 1 additions and 2 deletions

View File

@ -32,8 +32,6 @@ module.exports = React.createClass({
displayName: 'MemberList',
getInitialState: function() {
this._mounted = false;
const cli = MatrixClientPeg.get();
if (cli.hasLazyLoadMembersEnabled()) {
return {loading: true};
@ -43,6 +41,7 @@ module.exports = React.createClass({
},
componentWillMount: function() {
this._mounted = false;
const cli = MatrixClientPeg.get();
if (!cli.hasLazyLoadMembersEnabled()) {
this._listenForMembersChanges();