summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authortoasted-nutbread <toasted-nutbread@users.noreply.github.com>2020-02-11 22:21:55 -0500
committertoasted-nutbread <toasted-nutbread@users.noreply.github.com>2020-02-11 22:21:55 -0500
commit65dfb855fb23d8279367651ab650f3347aa236ac (patch)
tree0e20d58d83ba3f5a3939a5f738c58680c4ff65e4 /ext
parent9c5ad3ea67249416a31cf5c2f6e4917c0bed0fbf (diff)
Fix undefined id
Diffstat (limited to 'ext')
-rw-r--r--ext/fg/js/popup-proxy.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/fg/js/popup-proxy.js b/ext/fg/js/popup-proxy.js
index 4cacee53..63aa6bbe 100644
--- a/ext/fg/js/popup-proxy.js
+++ b/ext/fg/js/popup-proxy.js
@@ -69,7 +69,7 @@ class PopupProxy {
if (this._id === null) {
return;
}
- this._invokeHostApi('setVisibleOverride', {id, visible});
+ this._invokeHostApi('setVisibleOverride', {id: this._id, visible});
}
async containsPoint(x, y) {