diff options
| -rw-r--r-- | searx/autocomplete.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/searx/autocomplete.py b/searx/autocomplete.py index e277c6631..09589cf1f 100644 --- a/searx/autocomplete.py +++ b/searx/autocomplete.py @@ -5,6 +5,7 @@ # pylint: disable=use-dict-literal import json +import html from urllib.parse import urlencode, quote_plus import lxml @@ -162,7 +163,7 @@ def stract(query, _lang): if not resp.ok: return [] - return [suggestion['raw'] for suggestion in resp.json()] + return [html.unescape(suggestion['raw']) for suggestion in resp.json()] def startpage(query, sxng_locale): |