mirror of https://github.com/gorhill/uBlock.git
Assign value in set-constant regardless of `configurable` property
Related issue: - https://github.com/uBlockOrigin/uBlock-issues/issues/1694
This commit is contained in:
parent
6e6697fab6
commit
a9e6f9c72c
|
@ -924,9 +924,7 @@
|
||||||
const odesc = Object.getOwnPropertyDescriptor(owner, prop);
|
const odesc = Object.getOwnPropertyDescriptor(owner, prop);
|
||||||
let prevGetter, prevSetter;
|
let prevGetter, prevSetter;
|
||||||
if ( odesc instanceof Object ) {
|
if ( odesc instanceof Object ) {
|
||||||
if ( odesc.configurable === false ) {
|
|
||||||
owner[prop] = cValue;
|
owner[prop] = cValue;
|
||||||
}
|
|
||||||
if ( odesc.get instanceof Function ) {
|
if ( odesc.get instanceof Function ) {
|
||||||
prevGetter = odesc.get;
|
prevGetter = odesc.get;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue