ソースを参照

[fix] don't merge results with distinct fragments

David A Roberts 8 年 前
コミット
413e143707
共有1 個のファイルを変更した1 個の追加1 個の削除を含む
  1. 1
    1
      searx/results.py

+ 1
- 1
searx/results.py ファイルの表示

@@ -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