aboutsummaryrefslogtreecommitdiff
path: root/src/background/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/background/index.js')
-rw-r--r--src/background/index.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/background/index.js b/src/background/index.js
index d8047a6..8f2e44c 100644
--- a/src/background/index.js
+++ b/src/background/index.js
@@ -17,7 +17,10 @@ const keyPressHandle = (request, sender, sendResponse) => {
if (actions.isBackgroundAction(action[0])) {
doBackgroundAction(sender, action);
} else if (actions.isContentAction(action[0])) {
- sendResponse(action);
+ sendResponse({
+ type: 'response.action',
+ action: action
+ });
}
};