diff --git a/src/components/structures/ThreadView.tsx b/src/components/structures/ThreadView.tsx index f21528cce6..bb993304b2 100644 --- a/src/components/structures/ThreadView.tsx +++ b/src/components/structures/ThreadView.tsx @@ -157,7 +157,7 @@ export default class ThreadView extends React.Component { private setupThread = (mxEv: MatrixEvent) => { let thread = this.props.room.threads?.get(mxEv.getId()); if (!thread) { - thread = this.props.room.createThread(mxEv); + thread = this.props.room.createThread(mxEv, [mxEv]); } thread.on(ThreadEvent.Update, this.updateLastThreadReply); this.updateThread(thread);