diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2019-12-13 23:23:15 -0500 |
---|---|---|
committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2019-12-14 11:12:39 -0500 |
commit | 87ece13647aae3f670f03d7f5667f638bee23bcb (patch) | |
tree | b79b207f6fd70e46a36af5caf06f388efca90035 /ext/bg/js/settings | |
parent | 300282e3b4cd98b626509671693a35f7249a77c2 (diff) |
Isolate arguments passed across window contexts
Diffstat (limited to 'ext/bg/js/settings')
-rw-r--r-- | ext/bg/js/settings/main.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ext/bg/js/settings/main.js b/ext/bg/js/settings/main.js index 315766e0..78a5870c 100644 --- a/ext/bg/js/settings/main.js +++ b/ext/bg/js/settings/main.js @@ -17,7 +17,9 @@ */ function getOptionsMutable(optionsContext) { - return utilBackend().getOptions(optionsContext); + return utilBackend().getOptions( + utilBackgroundIsolate(optionsContext) + ); } function getOptionsFullMutable() { |