mirror of
https://github.com/searxng/searxng.git
synced 2024-11-27 13:21:04 +00:00
ddg encoding of URLs appears to be broken, revealed when trying to pickled the results to disk
This commit is contained in:
parent
f094188780
commit
78a69e4c98
1 changed files with 1 additions and 1 deletions
|
@ -72,7 +72,7 @@ def response(resp):
|
||||||
# append result
|
# append result
|
||||||
results.append({'title': title,
|
results.append({'title': title,
|
||||||
'content': content,
|
'content': content,
|
||||||
'url': res_url})
|
'url': res_url.encode('utf8')})
|
||||||
|
|
||||||
# return results
|
# return results
|
||||||
return results
|
return results
|
||||||
|
|
Loading…
Reference in a new issue