yahoo engine - don't lump all search suggestions together

Closes: https://github.com/searxng/searxng/issues/421
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
This commit is contained in:
Markus Heiser 2021-10-21 09:38:04 +02:00 committed by Eric Zhang
parent 03eb9c2461
commit 35496b5c51
No known key found for this signature in database
GPG Key ID: 42F3A6B3FCFC1733
1 changed files with 1 additions and 1 deletions

View File

@ -143,7 +143,7 @@ def response(resp):
'title': title,
'content': content})
for suggestion in eval_xpath_list(dom, '//div[contains(@class, "AlsoTry")]'):
for suggestion in eval_xpath_list(dom, '//div[contains(@class, "AlsoTry")]//table//a'):
# append suggestion
results.append({'suggestion': extract_text(suggestion)})