mirror of
https://github.com/element-hq/element-web
synced 2024-11-22 09:15:41 +03:00
Null guard TimelinePanel unmount edge (#8171)
This commit is contained in:
parent
a3e5231873
commit
190968c73c
1 changed files with 2 additions and 2 deletions
|
@ -559,7 +559,7 @@ class TimelinePanel extends React.Component<IProps, IState> {
|
|||
// updates from pagination will happen when the paginate completes.
|
||||
if (toStartOfTimeline || !data || !data.liveEvent) return;
|
||||
|
||||
if (!this.messagePanel.current) return;
|
||||
if (!this.messagePanel.current?.getScrollState()) return;
|
||||
|
||||
if (!this.messagePanel.current.getScrollState().stuckAtBottom) {
|
||||
// we won't load this event now, because we don't want to push any
|
||||
|
@ -570,7 +570,7 @@ class TimelinePanel extends React.Component<IProps, IState> {
|
|||
}
|
||||
|
||||
// tell the timeline window to try to advance itself, but not to make
|
||||
// an http request to do so.
|
||||
// a http request to do so.
|
||||
//
|
||||
// we deliberately avoid going via the ScrollPanel for this call - the
|
||||
// ScrollPanel might already have an active pagination promise, which
|
||||
|
|
Loading…
Reference in a new issue