Skip forceUpdate in ReplyThread if the redacted event is not relevant

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
pull/21833/head
Michael Telatynski 2019-08-14 23:27:04 +01:00
parent a44d61fb75
commit 6f529852cd
1 changed files with 4 additions and 3 deletions

View File

@ -198,9 +198,10 @@ export default class ReplyThread extends React.Component {
onRoomRedaction = (ev, room) => {
if (this.unmounted) return;
// we could skip an update if the event isn't in our timeline,
// but that's probably an early optimisation.
this.forceUpdate();
// If one of the events we are rendering gets redacted, force a re-render
if (this.state.events.some(event => event.getId() === ev.getId())) {
this.forceUpdate();
}
};
async initialize() {