mirror of
https://github.com/searxng/searxng
synced 2024-11-03 09:40:20 +00: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
|
return process_callback
|
||||||
|
|
||||||
def highlight_content(content, query):
|
def highlight_content(content, query):
|
||||||
|
|
||||||
|
if not content:
|
||||||
|
return None
|
||||||
# ignoring html contents
|
# ignoring html contents
|
||||||
# TODO better html content detection
|
# TODO better html content detection
|
||||||
if content.find('<') != -1:
|
if content.find('<') != -1:
|
||||||
|
Loading…
Reference in New Issue
Block a user