forked from mystiq/hydrogen-web
encountered this very unlikely race while testing, so prevent it
This commit is contained in:
parent
db5c98a706
commit
c8dd7b42e7
1 changed files with 3 additions and 0 deletions
|
@ -75,6 +75,9 @@ export class Timeline {
|
|||
|
||||
// tries to prepend `amount` entries to the `entries` list.
|
||||
async loadAtTop(amount) {
|
||||
if (this._disposables.isDisposed) {
|
||||
return;
|
||||
}
|
||||
const firstEventEntry = this._remoteEntries.array.find(e => !!e.eventType);
|
||||
if (!firstEventEntry) {
|
||||
return;
|
||||
|
|
Loading…
Reference in a new issue