Add thread root to timelime when starting a new thread (#7983)
This commit is contained in:
parent
0e60ad98c1
commit
6174b13142
1 changed files with 1 additions and 1 deletions
|
@ -157,7 +157,7 @@ export default class ThreadView extends React.Component<IProps, IState> {
|
||||||
private setupThread = (mxEv: MatrixEvent) => {
|
private setupThread = (mxEv: MatrixEvent) => {
|
||||||
let thread = this.props.room.threads?.get(mxEv.getId());
|
let thread = this.props.room.threads?.get(mxEv.getId());
|
||||||
if (!thread) {
|
if (!thread) {
|
||||||
thread = this.props.room.createThread(mxEv);
|
thread = this.props.room.createThread(mxEv, [mxEv]);
|
||||||
}
|
}
|
||||||
thread.on(ThreadEvent.Update, this.updateLastThreadReply);
|
thread.on(ThreadEvent.Update, this.updateLastThreadReply);
|
||||||
this.updateThread(thread);
|
this.updateThread(thread);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue