Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
Disable pending events for thread list when server supports threads (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
Germain authored Mar 8, 2022
1 parent 5c535d1 commit 7faf56b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/components/structures/ThreadPanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,10 @@ export async function getThreadTimelineSet(
filter.filterId = filterId;
const timelineSet = room.getOrCreateFilteredTimelineSet(
filter,
{ prepopulateTimeline: false },
{
prepopulateTimeline: false,
pendingEvents: false,
},
);

timelineSet.resetLiveTimeline();
Expand Down

0 comments on commit 7faf56b

Please sign in to comment.