mirror of
https://github.com/searxng/searxng.git
synced 2024-11-19 02:40:11 +01:00
[fix] not highlighting Nonetype
This commit is contained in:
parent
88b5169f8d
commit
5f065886ff
@ -107,6 +107,9 @@ def make_callback(engine_name, results, suggestions, callback, params):
|
||||
return process_callback
|
||||
|
||||
def highlight_content(content, query):
|
||||
|
||||
if not content:
|
||||
return None
|
||||
# ignoring html contents
|
||||
# TODO better html content detection
|
||||
if content.find('<') != -1:
|
||||
|
Loading…
Reference in New Issue
Block a user