1
0
mirror of https://github.com/matrix-org/matrix-js-sdk.git synced 2025-12-04 05:02:41 +03:00

Threads are missing from the timeline (#2996)

This commit is contained in:
Janne Mareike Koschinski
2022-12-19 11:32:37 +01:00
committed by GitHub
parent 618242ef3c
commit 4f86eee250
2 changed files with 56 additions and 1 deletions

View File

@@ -6059,7 +6059,7 @@ export class MatrixClient extends TypedEventEmitter<EmittedEvents, ClientEventHa
this.processBeaconEvents(room, timelineEvents);
this.processThreadRoots(
room,
timelineEvents.filter((it) => it.isRelation(THREAD_RELATION_TYPE.name)),
timelineEvents.filter((it) => it.getServerAggregatedRelation(THREAD_RELATION_TYPE.name)),
false,
);