logo

searx

My custom branche(s) on searx, a meta-search engine
commit: d80fb2c8e8995facb3a25c152c47a93eecf1fee4
parent: 72a217f983c935712eb872042157b4432eaec641
Author: Adam Tauber <asciimoo@gmail.com>
Date:   Fri,  9 Dec 2016 19:57:28 +0100

[enh] central handling of empty result titles

Diffstat:

Msearx/webapp.py3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/searx/webapp.py b/searx/webapp.py @@ -435,7 +435,8 @@ def index(): if 'content' in result and result['content']: result['content'] = highlight_content(escape(result['content'][:1024]), search_query.query.encode('utf-8')) - result['title'] = highlight_content(escape(result['title']), search_query.query.encode('utf-8')) + result['title'] = highlight_content(escape(result['title'] or u''), + search_query.query.encode('utf-8')) else: if result.get('content'): result['content'] = html_to_text(result['content']).strip()