Browse Source

[fix] don't merge results with distinct fragments

David A Roberts 8 years ago
parent
commit
413e143707
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      searx/results.py

+ 1
- 1
searx/results.py View File

28
     else:
28
     else:
29
         host_b = url_b.netloc
29
         host_b = url_b.netloc
30
 
30
 
31
-    if host_a != host_b or url_a.query != url_b.query:
31
+    if host_a != host_b or url_a.query != url_b.query or url_a.fragment != url_b.fragment:
32
         return False
32
         return False
33
 
33
 
34
     # remove / from the end of the url if required
34
     # remove / from the end of the url if required