Explorar el Código

[fix] don't merge results with distinct fragments

David A Roberts hace 8 años
padre
commit
413e143707
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      searx/results.py

+ 1
- 1
searx/results.py Ver fichero

@@ -28,7 +28,7 @@ def compare_urls(url_a, url_b):
28 28
     else:
29 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 32
         return False
33 33
 
34 34
     # remove / from the end of the url if required