1
0
mirror of https://github.com/searxng/searxng.git synced 2024-11-22 12:10:11 +01:00

[fix] better url comparison

This commit is contained in:
asciimoo 2013-10-19 20:11:56 +02:00
parent 83c39a565a
commit ad2ff1fda8

View File

@ -96,7 +96,8 @@ def search(query, request, selected_engines):
duplicated = False
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:
res['parsed_url'].path == new_res['parsed_url'].path and\
res['parsed_url'].query == res['parsed_url'].query:
duplicated = new_res
break
if duplicated: