diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2019-12-09 21:54:45 -0500 |
---|---|---|
committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2019-12-13 23:11:56 -0500 |
commit | daff44a010b3b926004f6888d62fe408da90966d (patch) | |
tree | db790f305a56aac73a796973ef796ab9cc2774da /ext/bg/js/backend.js | |
parent | d8b21606ba0f8878b718aef332c6616931e99dd0 (diff) |
Move apiForward implementation into Backend
Diffstat (limited to 'ext/bg/js/backend.js')
-rw-r--r-- | ext/bg/js/backend.js | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/ext/bg/js/backend.js b/ext/bg/js/backend.js index 5c5da2dd..e9b50789 100644 --- a/ext/bg/js/backend.js +++ b/ext/bg/js/backend.js @@ -420,7 +420,14 @@ class Backend { } _onApiForward({action, params}, sender) { - return apiForward(action, params, sender); + if (!(sender && sender.tab)) { + return Promise.resolve(); + } + + const tabId = sender.tab.id; + return new Promise((resolve) => { + chrome.tabs.sendMessage(tabId, {action, params}, (response) => resolve(response)); + }); } _onApiFrameInformationGet(params, sender) { |