mirror of
https://github.com/gorhill/uBlock.git
synced 2025-02-01 12:41:36 +01:00
Improve reliability of set-constant scriptlet
Related issue: - https://github.com/uBlockOrigin/uBlock-issues/issues/1694
This commit is contained in:
parent
7ee9c21b37
commit
a21ecafbc6
@ -924,7 +924,9 @@
|
||||
const odesc = Object.getOwnPropertyDescriptor(owner, prop);
|
||||
let prevGetter, prevSetter;
|
||||
if ( odesc instanceof Object ) {
|
||||
if ( odesc.configurable === false ) { return; }
|
||||
if ( odesc.configurable === false ) {
|
||||
owner[prop] = cValue;
|
||||
}
|
||||
if ( odesc.get instanceof Function ) {
|
||||
prevGetter = odesc.get;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user