Skip to content

Commit

Permalink
Fix #24036: Ensure threads loaded via pagination are created properly
Browse files Browse the repository at this point in the history
  • Loading branch information
justjanne committed Dec 19, 2022
1 parent bc2e7ec commit dd4ecde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
);

Expand Down

0 comments on commit dd4ecde

Please sign in to comment.