mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-01 16:33:06 +01:00
Be sure to use only a valid journal slot pointer
Related commit:
- 70cabc1cc6
This commit is contained in:
parent
3cf9a187fe
commit
2bb33aac20
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user