aboutsummaryrefslogtreecommitdiff
path: root/ext/bg
diff options
context:
space:
mode:
Diffstat (limited to 'ext/bg')
-rw-r--r--ext/bg/js/api.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/bg/js/api.js b/ext/bg/js/api.js
index 14fc0279..3209cc31 100644
--- a/ext/bg/js/api.js
+++ b/ext/bg/js/api.js
@@ -22,12 +22,12 @@ function apiOptionsGet(optionsContext) {
}
async function apiOptionsSet(changedOptions, optionsContext, source) {
- let options = await apiOptionsGet(optionsContext);
+ const options = await apiOptionsGet(optionsContext);
function getValuePaths(obj) {
let valuePaths = [];
let nodes = [{
- obj: changedOptions,
+ obj,
path: []
}];
while (nodes.length > 0) {