aboutsummaryrefslogtreecommitdiff
path: root/ext/bg/js/api.js
diff options
context:
space:
mode:
authortoasted-nutbread <toasted-nutbread@users.noreply.github.com>2019-09-06 21:06:45 -0400
committertoasted-nutbread <toasted-nutbread@users.noreply.github.com>2019-09-06 21:23:35 -0400
commit13b184707b1bb0c5150645d6cdd186accb345f60 (patch)
treedca363d100085b50b583514f2f3fb4ecad984baf /ext/bg/js/api.js
parent35ca0f35dd2cfea3223e5a38d5465002dd54993b (diff)
Remove unnecessary functions
apiOptionsSet not required in bg/js/api.js after optionsSave; optionsSave already invokes apiOptionsSet. apiOptionsSet not required in fg/js/api.js since it's never invoked by the foreground. optionsSet handler not required in bg/js/backend.js since the message is never sent by the foreground.
Diffstat (limited to 'ext/bg/js/api.js')
-rw-r--r--ext/bg/js/api.js1
1 files changed, 0 insertions, 1 deletions
diff --git a/ext/bg/js/api.js b/ext/bg/js/api.js
index 7126cab7..ff54ae81 100644
--- a/ext/bg/js/api.js
+++ b/ext/bg/js/api.js
@@ -138,7 +138,6 @@ async function apiCommandExec(command) {
const options = apiOptionsGetSync();
options.general.enable = !options.general.enable;
await optionsSave(options);
- await apiOptionsSet(options);
}
};