Manual load more

This commit is contained in:
2023-07-23 23:19:26 +01:00
parent b1f93c9fd8
commit 63454728f8
18 changed files with 70 additions and 110 deletions

View File

@ -250,7 +250,7 @@ export class Query implements QueryBase {
#onProgress() {
const isFinished = this.progress === 1;
if (this.feed.loading !== isFinished) {
this.#log("%s loading=%s, progress=%d", this.id, this.feed.loading, this.progress);
this.#log("%s loading=%s, progress=%d, traces=%O", this.id, this.feed.loading, this.progress, this.#tracing);
this.feed.loading = isFinished;
}
}