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

remove dupe method

This commit is contained in:
Bruno Windels
2020-08-18 12:34:43 +02:00
parent a3ca80b206
commit fa1e27076d

View File

@@ -235,10 +235,6 @@ export default class MessageComposer extends React.Component {
}
};
componentWillUnmount() {
dis.unregister(this.dispatcherRef);
}
componentDidMount() {
this.dispatcherRef = dis.register(this.onAction);
MatrixClientPeg.get().on("RoomState.events", this._onRoomStateEvents);
@@ -269,6 +265,7 @@ export default class MessageComposer extends React.Component {
if (this._roomStoreToken) {
this._roomStoreToken.remove();
}
dis.unregister(this.dispatcherRef);
}
_onRoomStateEvents(ev, state) {