mirror of
https://github.com/searxng/searxng.git
synced 2024-11-11 20:51:15 +00:00
parent
c45870dd71
commit
f05566d925
1 changed files with 5 additions and 1 deletions
|
@ -146,7 +146,11 @@ def response(resp):
|
|||
}
|
||||
)
|
||||
else:
|
||||
for url, title, content in zip(query(json, url_query), query(json, title_query), query(json, content_query)):
|
||||
for result in json:
|
||||
url = query(result, url_query)[0]
|
||||
title = query(result, title_query)[0]
|
||||
content = query(result, content_query)[0]
|
||||
|
||||
results.append(
|
||||
{
|
||||
'url': url_prefix + to_string(url),
|
||||
|
|
Loading…
Reference in a new issue