better naming
This commit is contained in:
parent
036b305c96
commit
9e8d1ed290
1 changed files with 2 additions and 2 deletions
|
@ -48,8 +48,8 @@ export class TimelineList extends ListView {
|
||||||
while (predicate()) {
|
while (predicate()) {
|
||||||
// fill, not enough content to fill timeline
|
// fill, not enough content to fill timeline
|
||||||
this._topLoadingPromise = this._viewModel.loadAtTop();
|
this._topLoadingPromise = this._viewModel.loadAtTop();
|
||||||
const startReached = await this._topLoadingPromise;
|
const shouldStop = await this._topLoadingPromise;
|
||||||
if (startReached) {
|
if (shouldStop) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue