Compare commits

..

1 commit

Author SHA1 Message Date
Fanboynz
0abc4e8d30
Merge e303f5af51 into f1689a9ab3 2026-02-16 22:46:22 -08:00
3 changed files with 2 additions and 6 deletions

View file

@ -1,4 +1,3 @@
- [Improve `json-edit`-related scriptlets](https://github.com/gorhill/uBlock/commit/98d3e9500a)
- [Improve `trusted-create-html` scriptlet](https://github.com/gorhill/uBlock/commit/baffd32dab)
- [Improve `prevent-fetch` scriptlet](https://github.com/gorhill/uBlock/commit/2ce376cf1d)
- [Fix handling of `extraMatch` parameter in `trusted-click-element` scriptlet](https://github.com/gorhill/uBlock/commit/a8ad95394d)

2
dist/version vendored
View file

@ -1 +1 @@
1.69.1.5
1.69.1.4

View file

@ -486,10 +486,7 @@ export class JSONPath {
if ( outcome ) { return k; }
}
#modifyVal(obj, key) {
let { modify, rval } = this.#compiled;
if ( typeof rval === 'string' ) {
rval = rval.replace('${now}', `${Date.now()}`);
}
const { modify, rval } = this.#compiled;
switch ( modify ) {
case undefined:
obj[key] = rval;