mirror of
https://github.com/vector-im/element-web.git
synced 2025-08-21 06:21:03 +02:00
Fix room list sorted by recent on app startup (#9515)
This commit is contained in:
parent
c497046e39
commit
750ca78e98
@ -111,7 +111,7 @@ const getLastTs = (r: Room, userId: string) => {
|
|||||||
|
|
||||||
const threadLastEventTimestamps = r.getThreads().map(thread => {
|
const threadLastEventTimestamps = r.getThreads().map(thread => {
|
||||||
const event = thread.replyToEvent ?? thread.rootEvent;
|
const event = thread.replyToEvent ?? thread.rootEvent;
|
||||||
return event!.getTs();
|
return event?.getTs() ?? 0;
|
||||||
});
|
});
|
||||||
|
|
||||||
return Math.max(mainTimelineLastTs, ...threadLastEventTimestamps);
|
return Math.max(mainTimelineLastTs, ...threadLastEventTimestamps);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user