Fix crashes

Signed-off-by: Ajay Bura <ajbura@gmail.com>
This commit is contained in:
Ajay Bura 2021-12-10 11:45:43 +05:30
parent 299ceac557
commit 20443f8a4d
2 changed files with 3 additions and 2 deletions

View file

@ -534,7 +534,8 @@ function RoomViewContent({ eventId, roomTimeline }) {
timelineScroll.scrollToIndex(jumpToItemIndex, 80); timelineScroll.scrollToIndex(jumpToItemIndex, 80);
} }
if (timelineScroll.bottom < 16 && !roomTimeline.canPaginateForward()) { if (timelineScroll.bottom < 16 && !roomTimeline.canPaginateForward()) {
if (readEventStore.getItem()?.getId() === roomTimeline.getReadUpToEventId()) { const readUpToId = roomTimeline.getReadUpToEventId();
if (readEventStore.getItem()?.getId() === readUpToId || readUpToId === null) {
requestAnimationFrame(() => roomTimeline.markAllAsRead()); requestAnimationFrame(() => roomTimeline.markAllAsRead());
} }
} }

View file

@ -32,7 +32,7 @@ function useJumpToEvent(roomTimeline) {
// we only show "Jump to unread" btn only if the event is not in timeline. // we only show "Jump to unread" btn only if the event is not in timeline.
// if event is in timeline // if event is in timeline
// we will automatically open the timeline from that event position // we will automatically open the timeline from that event position
if (!readEventId.startsWith('~') && !roomTimeline.hasEventInTimeline(readEventId)) { if (!readEventId?.startsWith('~') && !roomTimeline.hasEventInTimeline(readEventId)) {
setEventId(readEventId); setEventId(readEventId);
} }