mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-11 09:31:01 +01:00
Fix improperly initialized counter
Related discussion:
- https://github.com/uBlockOrigin/uBlock-issues/issues/1167
Related commit:
- feabfe3793
This commit is contained in:
parent
c33de41660
commit
fb0a442a9a
1 changed files with 1 additions and 1 deletions
|
@ -251,9 +251,9 @@ const PageStore = class {
|
|||
this.internalRedirectionCount = 0;
|
||||
this.extraData.clear();
|
||||
|
||||
this.frameAddCount = 0;
|
||||
this.frames = new Map();
|
||||
this.setFrame(0, tabContext.rawURL);
|
||||
this.frameAddCount = 0;
|
||||
|
||||
// The current filtering context is cloned because:
|
||||
// - We may be called with or without the current context having been
|
||||
|
|
Loading…
Reference in a new issue