Assign value in set-constant regardless of configurable property

Related issue:
- https://github.com/uBlockOrigin/uBlock-issues/issues/1694
This commit is contained in:
Raymond Hill 2021-08-27 10:48:49 -04:00
parent 6e6697fab6
commit a9e6f9c72c
No known key found for this signature in database
GPG key ID: 25E1490B761470C2

View file

@ -924,9 +924,7 @@
const odesc = Object.getOwnPropertyDescriptor(owner, prop);
let prevGetter, prevSetter;
if ( odesc instanceof Object ) {
if ( odesc.configurable === false ) {
owner[prop] = cValue;
}
owner[prop] = cValue;
if ( odesc.get instanceof Function ) {
prevGetter = odesc.get;
}