Merge pull request #2376 from dalf/fix-mojeek

Fix mojeek
This commit is contained in:
Alexandre Flament 2020-12-11 13:14:54 +01:00 committed by GitHub
commit 033f39bff7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -7,7 +7,6 @@ url_xpath = None
content_xpath = None
title_xpath = None
thumbnail_xpath = False
categories = []
paging = False
suggestion_xpath = ''
results_xpath = ''
@ -39,7 +38,7 @@ def request(query, params):
def response(resp):
results = []
dom = html.fromstring(resp.text)
is_onion = True if 'onions' in categories else False
is_onion = True if 'onions' in categories else False # pylint: disable=undefined-variable
if results_xpath:
for result in eval_xpath_list(dom, results_xpath):

View File

@ -309,10 +309,11 @@ class ResultContainer:
for res in results:
# FIXME : handle more than one category per engine
res['category'] = engines[res['engine']].categories[0]
engine = engines[res['engine']]
res['category'] = engine.categories[0] if len(engine.categories) > 0 else ''
# FIXME : handle more than one category per engine
category = engines[res['engine']].categories[0]\
category = res['category']\
+ ':' + res.get('template', '')\
+ ':' + ('img_src' if 'img_src' in res or 'thumbnail' in res else '')