1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-08 21:42:24 +03:00

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() {
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();