1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-10-31 01:45:39 +03:00

Disable pending events for thread list when server supports threads (#8003)

This commit is contained in:
Germain
2022-03-08 15:51:24 +00:00
committed by GitHub
parent 5c535d1885
commit 7faf56b7e7

View File

@@ -70,7 +70,10 @@ export async function getThreadTimelineSet(
filter.filterId = filterId;
const timelineSet = room.getOrCreateFilteredTimelineSet(
filter,
{ prepopulateTimeline: false },
{
prepopulateTimeline: false,
pendingEvents: false,
},
);
timelineSet.resetLiveTimeline();