1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-07-05 11:37:01 +02:00

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;
}