better naming

This commit is contained in:
Bruno Windels 2020-08-20 15:24:39 +02:00
parent 036b305c96
commit 9e8d1ed290

View File

@ -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;
} }
} }