diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-09-26 18:47:58 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-26 18:47:58 -0400 |
commit | 9c7b9d666087add0f72900c045ee43ed05c5b467 (patch) | |
tree | 25094cf37cdb542f96736d2286bb5a7761a15467 /ext/fg/js/content-script-main.js | |
parent | c1b59763941a74367b81e9b8329319f1ede72317 (diff) |
Fix page type never being detected as search page correctly (#867)
Diffstat (limited to 'ext/fg/js/content-script-main.js')
-rw-r--r-- | ext/fg/js/content-script-main.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/fg/js/content-script-main.js b/ext/fg/js/content-script-main.js index 84e78392..a427d10f 100644 --- a/ext/fg/js/content-script-main.js +++ b/ext/fg/js/content-script-main.js @@ -41,7 +41,7 @@ parentPopupId: null, parentFrameId: null, useProxyPopup: false, - isSearchPage: false, + pageType: 'web', allowRootFramePopupProxy: true }); await frontend.prepare(); |