1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-12-05 15:22:09 +03:00

Make local echo work for threads (#7157)

This commit is contained in:
Germain
2021-11-24 08:40:15 +00:00
committed by GitHub
parent 7f350ae0f4
commit 392c4ad8d9
4 changed files with 17 additions and 5 deletions

View File

@@ -81,7 +81,7 @@ export default class ThreadView extends React.Component<IProps, IState> {
this.teardownThread();
dis.unregister(this.dispatcherRef);
const room = MatrixClientPeg.get().getRoom(this.props.mxEvent.getRoomId());
room.on(ThreadEvent.New, this.onNewThread);
room.removeListener(ThreadEvent.New, this.onNewThread);
}
public componentDidUpdate(prevProps) {