diff options
Diffstat (limited to 'ext/bg/js/backend.js')
-rw-r--r-- | ext/bg/js/backend.js | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/ext/bg/js/backend.js b/ext/bg/js/backend.js index 344706d1..59a3de45 100644 --- a/ext/bg/js/backend.js +++ b/ext/bg/js/backend.js @@ -38,7 +38,6 @@ * profileConditionsDescriptorPromise * requestJson * requestText - * utilIsolate */ class Backend { @@ -875,7 +874,7 @@ class Backend { for (const target of targets) { try { const result = this._modifySetting(target); - results.push({result: utilIsolate(result)}); + results.push({result: clone(result)}); } catch (e) { results.push({error: errorToJson(e)}); } @@ -889,7 +888,7 @@ class Backend { for (const target of targets) { try { const result = this._getSetting(target); - results.push({result: utilIsolate(result)}); + results.push({result: clone(result)}); } catch (e) { results.push({error: errorToJson(e)}); } |