From 3a59aea742a50d80c77a47139012ff0ad04c1afb Mon Sep 17 00:00:00 2001 From: Bnyro Date: Sat, 8 Feb 2025 16:51:37 +0100 Subject: [PATCH] [fix] results.py: crashes when 'parsed_url' is None --- searx/results.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/searx/results.py b/searx/results.py index b9cb90bbb..281607de0 100644 --- a/searx/results.py +++ b/searx/results.py @@ -318,8 +318,9 @@ class ResultContainer: def __find_duplicated_http_result(self, result): result_template = result.get('template') for merged_result in self._merged_results: - if 'parsed_url' not in merged_result: + if not merged_result.get('parsed_url'): continue + if compare_urls(result['parsed_url'], merged_result['parsed_url']) and result_template == merged_result.get( 'template' ): @@ -385,6 +386,9 @@ class ResultContainer: categoryPositions = {} for res in results: + if not res.get('url'): + continue + # do we need to handle more than one category per engine? engine = engines[res['engine']] res['category'] = engine.categories[0] if len(engine.categories) > 0 else ''