diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2019-12-09 21:55:45 -0500 |
---|---|---|
committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2019-12-13 23:11:56 -0500 |
commit | 01a343262702d2c8641c7a4f990d439f38b90cb0 (patch) | |
tree | 72bc93dc9d3177b0507cab701f1a74c7f579e281 /ext/bg/js/backend.js | |
parent | daff44a010b3b926004f6888d62fe408da90966d (diff) |
Move apiFrameInformationGet implementation into Backend
Diffstat (limited to 'ext/bg/js/backend.js')
-rw-r--r-- | ext/bg/js/backend.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/bg/js/backend.js b/ext/bg/js/backend.js index e9b50789..4b94d073 100644 --- a/ext/bg/js/backend.js +++ b/ext/bg/js/backend.js @@ -431,7 +431,8 @@ class Backend { } _onApiFrameInformationGet(params, sender) { - return apiFrameInformationGet(sender); + const frameId = sender.frameId; + return Promise.resolve({frameId}); } _onApiInjectStylesheet({css}, sender) { |