Fix missing threads in thread list (#8011)
Co-authored-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
parent
3f67a389c1
commit
246d6757ab
3 changed files with 10 additions and 25 deletions
|
@ -308,7 +308,7 @@ export async function fetchInitialEvent(
|
|||
const rootEventData = await client.fetchRoomEvent(roomId, initialEvent.threadRootId);
|
||||
const rootEvent = new MatrixEvent(rootEventData);
|
||||
const room = client.getRoom(roomId);
|
||||
room.createThread(rootEvent);
|
||||
room.createThread(rootEvent, [rootEvent], true);
|
||||
} catch (e) {
|
||||
logger.warn("Could not find root event: " + initialEvent.threadRootId);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue