diff options
Diffstat (limited to 'ext/bg/js/options.js')
-rw-r--r-- | ext/bg/js/options.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/bg/js/options.js b/ext/bg/js/options.js index 16168e38..adf3cfd4 100644 --- a/ext/bg/js/options.js +++ b/ext/bg/js/options.js @@ -343,7 +343,7 @@ class OptionsUtil { const combine = (target, source) => { for (const key in source) { - if (!hasOwn(target, key)) { + if (!Object.prototype.hasOwnProperty.call(target, key)) { target[key] = source[key]; } } |