summaryrefslogtreecommitdiff
path: root/ext/fg
diff options
context:
space:
mode:
Diffstat (limited to 'ext/fg')
-rw-r--r--ext/fg/js/driver.js10
-rw-r--r--ext/fg/js/util.js2
2 files changed, 11 insertions, 1 deletions
diff --git a/ext/fg/js/driver.js b/ext/fg/js/driver.js
index 75dbe219..9aab7950 100644
--- a/ext/fg/js/driver.js
+++ b/ext/fg/js/driver.js
@@ -163,6 +163,8 @@ class Driver {
return true;
});
}
+ }).catch(error => {
+ alert('Error: ' + error);
});
}
@@ -202,6 +204,8 @@ class Driver {
return true;
});
}
+ }).catch(error => {
+ alert('Error: ' + error);
});
}
@@ -231,6 +235,8 @@ class Driver {
}
});
}
+ }).catch(error => {
+ alert('Error: ' + error);
});
}
@@ -273,6 +279,8 @@ class Driver {
} else {
alert('Note could not be added');
}
+ }).catch(error => {
+ alert('Error: ' + error);
});
}
@@ -317,6 +325,8 @@ class Driver {
states.forEach((state, index) => this.popup.invokeApi('setActionState', {index, state, sequence}));
}
});
+ }).catch(error => {
+ alert('Error: ' + error);
});
}
}
diff --git a/ext/fg/js/util.js b/ext/fg/js/util.js
index 7248ae86..6f2fd28d 100644
--- a/ext/fg/js/util.js
+++ b/ext/fg/js/util.js
@@ -19,7 +19,7 @@
function invokeApiBg(action, params) {
return new Promise((resolve, reject) => {
- chrome.runtime.sendMessage({action, params}, (result, error) => {
+ chrome.runtime.sendMessage({action, params}, ({result, error}) => {
if (error) {
reject(error);
} else {