commit: 5bffa9ca33f8ec98baebca13ee9b16262bfe4e8d
parent 9cec9770be27cf4fc47d1caa2bccc59d911c20c2
Author: Thomas Pointhuber <thomas.pointhuber@gmx.at>
Date: Mon, 24 Aug 2015 11:18:58 +0200
[fix] rewrite scheme to http if there is no one, FIX #390
Diffstat:
1 file changed, 4 insertions(+), 0 deletions(-)
diff --git a/searx/search.py b/searx/search.py
@@ -206,6 +206,10 @@ def score_results(results):
# if there is no duplicate found, append result
else:
res['score'] = score
+ # if the result has no scheme, use http as default
+ if res['parsed_url'].scheme == '':
+ res['parsed_url'] = res['parsed_url']._replace(scheme="http")
+
results.append(res)
results = sorted(results, key=itemgetter('score'), reverse=True)