diff options
author | siikamiika <siikamiika@users.noreply.github.com> | 2020-02-10 22:09:23 +0200 |
---|---|---|
committer | siikamiika <siikamiika@users.noreply.github.com> | 2020-02-10 22:09:23 +0200 |
commit | 9c98c631afde843f8b5ed4c54fc1f4ff0ec3a00a (patch) | |
tree | 0c2c4e0c7cae41e0c89a91c116e482e77d9f5f50 /ext/bg/js/search.js | |
parent | 4f1ed14f07c1373bc5734a12bbb3203c1b07a2bd (diff) |
fix async issues
Diffstat (limited to 'ext/bg/js/search.js')
-rw-r--r-- | ext/bg/js/search.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/bg/js/search.js b/ext/bg/js/search.js index 4da27513..6641255f 100644 --- a/ext/bg/js/search.js +++ b/ext/bg/js/search.js @@ -49,6 +49,8 @@ class DisplaySearch extends Display { try { await this.initialize(); + await this.queryParser.prepare(); + const {queryParams: {query='', mode=''}} = parseUrl(window.location.href); if (this.search !== null) { |