aboutsummaryrefslogtreecommitdiff
path: root/src/background
diff options
context:
space:
mode:
Diffstat (limited to 'src/background')
-rw-r--r--src/background/index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/background/index.js b/src/background/index.js
index d2cfeb4..f329a9c 100644
--- a/src/background/index.js
+++ b/src/background/index.js
@@ -32,7 +32,7 @@ backgroundStore.subscribe(() => {
browser.tabs.query({ active: true, currentWindow: true }).then((tabs) => {
if (tabs.length > 0) {
return browser.tabs.sendMessage(tabs[0].id, {
- type: 'state.changed',
+ type: messages.STATE_UPDATE,
state: backgroundStore.getState()
});
}