diff --git a/src/components/structures/RoomView.tsx b/src/components/structures/RoomView.tsx index 98d55f8ae6..bfd89937b8 100644 --- a/src/components/structures/RoomView.tsx +++ b/src/components/structures/RoomView.tsx @@ -420,6 +420,14 @@ export class RoomView extends React.Component { } else { newState.initialEventId = initialEventId; newState.isInitialEventHighlighted = RoomViewStore.isInitialEventHighlighted(); + + if (thread && initialEvent?.isThreadRoot) { + dispatchShowThreadEvent( + thread.rootEvent, + initialEvent, + RoomViewStore.isInitialEventHighlighted(), + ); + } } }