From 987b0d6f5b238c9b8cb13050d39b24d163335261 Mon Sep 17 00:00:00 2001 From: Markus Heiser Date: Sat, 4 Sep 2021 12:41:23 +0200 Subject: [PATCH] [fix] remove minimum length of content for XPath engine Instead of raising an exception and therefore hiding all results of the engine. It make sense to remove that requirement in order to allow the implementation of search engines that do not always have a description. In fact some search engines that in 99% of the case have a description like Brave Search or Mojeek crash completely if they for some reason included a result with no description. To test this patch try Mojeek: !mjk xyz before and after the patch. Suggested-by: 0xhtml in https://github.com/searx/searx/discussions/2933 Signed-off-by: Markus Heiser --- searx/engines/xpath.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/searx/engines/xpath.py b/searx/engines/xpath.py index b215c2ba..9c2929c4 100644 --- a/searx/engines/xpath.py +++ b/searx/engines/xpath.py @@ -48,7 +48,7 @@ def response(resp): for result in eval_xpath_list(dom, results_xpath): 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