diff options
Diffstat (limited to 'ext/fg')
| -rw-r--r-- | ext/fg/js/frontend.js | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/ext/fg/js/frontend.js b/ext/fg/js/frontend.js index d7bc02cc..d6c5eac6 100644 --- a/ext/fg/js/frontend.js +++ b/ext/fg/js/frontend.js @@ -95,7 +95,7 @@ class Frontend extends TextScanner {      onRuntimeMessage({action, params}, sender, callback) {          const {targetPopupId} = params || {}; -        if (targetPopupId !== 'all' && targetPopupId !== this.popup.id) { return; } +        if (typeof targetPopupId !== 'undefined' && targetPopupId !== this.popup.id) { return; }          const handler = this._runtimeMessageHandlers.get(action);          if (typeof handler !== 'function') { return false; } |