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/bg/js/search.js | |
parent | c1b59763941a74367b81e9b8329319f1ede72317 (diff) |
Fix page type never being detected as search page correctly (#867)
Diffstat (limited to 'ext/bg/js/search.js')
-rw-r--r-- | ext/bg/js/search.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/bg/js/search.js b/ext/bg/js/search.js index f5b4a671..af88bb76 100644 --- a/ext/bg/js/search.js +++ b/ext/bg/js/search.js @@ -333,7 +333,7 @@ class DisplaySearch extends Display { await this.setupNestedPopups({ depth: 1, useProxyPopup: false, - isSearchPage: true + pageType: 'search' }); } catch (e) { yomichan.logError(e); |