summaryrefslogtreecommitdiff
path: root/searx
diff options
context:
space:
mode:
authorKirill Isakov <ukwt@ya.ru>2016-04-16 16:22:31 +0600
committerKirill Isakov <ukwt@ya.ru>2016-04-16 16:22:31 +0600
commit4eeb5fb76bde960fe56e4a59668fc62358cc5033 (patch)
tree81ad8c32ad82976c9b94e9bbbf1eddf6b111b7ab /searx
parent2661c3ab2140603a254d37d2709fee342026fe7b (diff)
downloadsearxng-4eeb5fb76bde960fe56e4a59668fc62358cc5033.tar.gz
searxng-4eeb5fb76bde960fe56e4a59668fc62358cc5033.zip
[fix] incorrect URLs in Reddit results - closes #538
Diffstat (limited to 'searx')
-rw-r--r--searx/engines/reddit.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/searx/engines/reddit.py b/searx/engines/reddit.py
index 9729898e5..3ca7e44f6 100644
--- a/searx/engines/reddit.py
+++ b/searx/engines/reddit.py
@@ -13,7 +13,7 @@
import json
from cgi import escape
from urllib import urlencode
-from urlparse import urlparse
+from urlparse import urlparse, urljoin
from datetime import datetime
# engine dependent config
@@ -21,7 +21,8 @@ categories = ['general', 'images', 'news', 'social media']
page_size = 25
# search-url
-search_url = 'https://www.reddit.com/search.json?{query}'
+base_url = 'https://www.reddit.com/'
+search_url = base_url + 'search.json?{query}'
# do search-request
@@ -52,7 +53,7 @@ def response(resp):
# extract post information
params = {
- 'url': data['url'],
+ 'url': urljoin(base_url, data['permalink']),
'title': data['title']
}
@@ -61,6 +62,7 @@ def response(resp):
url_info = urlparse(thumbnail)
# netloc & path
if url_info[1] != '' and url_info[2] != '':
+ params['img_src'] = data['url']
params['thumbnail_src'] = thumbnail
params['template'] = 'images.html'
img_results.append(params)