summaryrefslogtreecommitdiff
path: root/searx/results.py
diff options
context:
space:
mode:
authorAdam Tauber <asciimoo@gmail.com>2016-08-16 10:36:05 +0200
committerGitHub <noreply@github.com>2016-08-16 10:36:05 +0200
commitacfe843ecd038ee3518f2afcee68bfedf4366366 (patch)
treea01c52560b388aa86d04a7081df6ba59c683cac7 /searx/results.py
parent104cdb7d03771d4eca5b5126532ccf47642bb9de (diff)
parent45120bc71190b03d549547a696e8aa019277200a (diff)
Merge pull request #663 from davidar/hoogle
Add Hoogle search engine
Diffstat (limited to 'searx/results.py')
-rw-r--r--searx/results.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/results.py b/searx/results.py
index 9a4ec0b28..32832f199 100644
--- a/searx/results.py
+++ b/searx/results.py
@@ -28,7 +28,7 @@ def compare_urls(url_a, url_b):
else:
host_b = url_b.netloc
- if host_a != host_b or url_a.query != url_b.query:
+ if host_a != host_b or url_a.query != url_b.query or url_a.fragment != url_b.fragment:
return False
# remove / from the end of the url if required