1
0
mirror of https://github.com/searxng/searxng.git synced 2024-10-01 09:00:15 +02:00

[enh] merging only results with same rendering templates

This commit is contained in:
asciimoo 2013-10-23 12:24:51 +02:00
parent 708fa6f88a
commit 5e358ea9a9

View File

@ -106,7 +106,8 @@ def search(query, request, selected_categories):
for new_res in results:
if res['parsed_url'].netloc == new_res['parsed_url'].netloc and\
res['parsed_url'].path == new_res['parsed_url'].path and\
res['parsed_url'].query == new_res['parsed_url'].query:
res['parsed_url'].query == new_res['parsed_url'].query and\
res.get('template') == new_res.get('template'):
duplicated = new_res
break
if duplicated: