mounted can be set straight in componentWillMount

pull/21833/head
Bruno Windels 2018-09-17 20:02:15 +02:00
parent e8b4770940
commit 0727e0f8d3
1 changed files with 1 additions and 5 deletions

View File

@ -42,7 +42,7 @@ module.exports = React.createClass({
},
componentWillMount: function() {
this._mounted = false;
this._mounted = true;
const cli = MatrixClientPeg.get();
if (cli.hasLazyLoadMembersEnabled()) {
// true means will not show a spinner but the
@ -73,10 +73,6 @@ module.exports = React.createClass({
// cli.on("Room.timeline", this.onRoomTimeline);
},
componentDidMount: async function() {
this._mounted = true;
},
componentWillUnmount: function() {
this._mounted = false;
const cli = MatrixClientPeg.get();