summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--searx/engines/xpath.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/engines/xpath.py b/searx/engines/xpath.py
index e14f982b9..0f88fb29a 100644
--- a/searx/engines/xpath.py
+++ b/searx/engines/xpath.py
@@ -194,7 +194,7 @@ def response(resp):
url = extract_url(eval_xpath_list(result, url_xpath, min_len=1), search_url)
title = extract_text(eval_xpath_list(result, title_xpath, min_len=1))
- content = extract_text(eval_xpath_list(result, content_xpath, min_len=1))
+ content = extract_text(eval_xpath_list(result, content_xpath))
tmp_result = {'url': url, 'title': title, 'content': content}
# add thumbnail if available