diff options
author | lolcat <will@lolcat.ca> | 2023-10-17 17:58:08 -0400 |
---|---|---|
committer | lolcat <will@lolcat.ca> | 2023-10-17 17:58:08 -0400 |
commit | 64b090ee058953aed2246967332c7f0b6623cd8f (patch) | |
tree | 5ce457a9a7d96e0164cc9c1734acb1f4e7ab702a /static | |
parent | 453b4310e2deea984182f6d3c78c974ba8a9f8d6 (diff) |
fix cookie big
Diffstat (limited to 'static')
-rw-r--r-- | static/client.js | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/static/client.js b/static/client.js index a53cdb6..2e691f8 100644 --- a/static/client.js +++ b/static/client.js @@ -767,7 +767,12 @@ if(searchbox_wrapper.length !== 0){ // make sure we dont fetch same thing twice autocomplete_cache[curvalue] = []; - var res = await fetch("/api/v1/ac?s=" + encodeURIComponent(curvalue) + ac_req_appendix); + var res = await fetch("/api/v1/ac?s=" + (encodeURIComponent(curvalue).replaceAll("%20", "+")) + ac_req_appendix); + if(!res.ok){ + + return; + } + var json = await res.json(); autocomplete_cache[curvalue] = json[1]; @@ -802,7 +807,7 @@ if(searchbox_wrapper.length !== 0){ ac_func = null; getac(); // get results after 100ms of no keystroke resolve(); - }, 300); + }, 200); }); } |