mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-16 05:04:57 +08:00
Add thread root to timelime when starting a new thread (#7983)
This commit is contained in:
parent
0e60ad98c1
commit
6174b13142
@ -157,7 +157,7 @@ export default class ThreadView extends React.Component<IProps, IState> {
|
||||
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);
|
||||
|
Loading…
Reference in New Issue
Block a user