mirror of https://github.com/gorhill/uBlock.git
Have `getAll()` returns at least one neutered Tracker object
Related discussion: - https://github.com/uBlockOrigin/uAssets/issues/10731#issuecomment-986031354
This commit is contained in:
parent
ccc4c7d41f
commit
64f427d0e5
|
@ -65,7 +65,7 @@
|
||||||
return new Tracker();
|
return new Tracker();
|
||||||
};
|
};
|
||||||
ga.getAll = function() {
|
ga.getAll = function() {
|
||||||
return [];
|
return [new Tracker()];
|
||||||
};
|
};
|
||||||
ga.remove = noopfn;
|
ga.remove = noopfn;
|
||||||
// https://github.com/uBlockOrigin/uAssets/issues/2107
|
// https://github.com/uBlockOrigin/uAssets/issues/2107
|
||||||
|
|
Loading…
Reference in New Issue