aboutsummaryrefslogtreecommitdiff
path: root/extension/junction.js
diff options
context:
space:
mode:
authorRuben Beltran del Rio <ruben@unlimited.pizza>2020-09-27 20:37:18 +0200
committerRuben Beltran del Rio <ruben@unlimited.pizza>2020-09-27 20:37:18 +0200
commit6393c915648cc9d2941b8c9194a13ff078dafae5 (patch)
tree28406d128c0bb4d33bbb8ff37b5accf611097221 /extension/junction.js
parent4757c4616d5d7106cd023f06e5e5ba04d01bbb07 (diff)
Make tada accessible on web
Diffstat (limited to 'extension/junction.js')
-rw-r--r--extension/junction.js16
1 files changed, 9 insertions, 7 deletions
diff --git a/extension/junction.js b/extension/junction.js
index 16bc9f3..a662f6c 100644
--- a/extension/junction.js
+++ b/extension/junction.js
@@ -56,14 +56,16 @@ const internals = {
internals.getRoot().browserAction.disable();
const activeTabs = await internals.getActiveTabs();
- const execution = await internals.getRoot().tabs.executeScript(activeTabs[0].id, {
- file: '/content_script.js'
- });
- if (!execution[0]) {
- internals.onDisconnect();
- }
- },
+ const execution = await internals.getRoot().tabs.executeScript(activeTabs[0].id, {
+ file: '/content_script.js'
+ });
+
+ if (!execution || !execution[0]) {
+ internals.onDisconnect();
+ }
+ }
+ ,
hangUp() {