mounted can be set straight in componentWillMount

This commit is contained in:
Bruno Windels 2018-09-17 20:02:15 +02:00
parent e8b4770940
commit 0727e0f8d3

View File

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