diff --git a/src/js/pagestore.js b/src/js/pagestore.js index 729590de5..0444e2018 100644 --- a/src/js/pagestore.js +++ b/src/js/pagestore.js @@ -506,7 +506,7 @@ const PageStore = class { this.journalTimer = undefined; const journal = this.journal; - const pivot = this.journalLastCommitted || 0; + const pivot = Math.max(0, this.journalLastCommitted); const now = Date.now(); let aggregateCounts = 0;