[fix] searx/results.py: strip result['content'] only if it exists

fix PR #302
This commit is contained in:
Alexandre Flament 2021-09-10 17:53:49 +02:00
parent 75daef8986
commit d9658a7f91
1 changed files with 2 additions and 1 deletions

View File

@ -255,7 +255,8 @@ class ResultContainer:
result['url'] = result['parsed_url'].geturl()
# strip multiple spaces and cariage returns from content
result['content'] = WHITESPACE_REGEX.sub(' ', result['content'])
if result.get('content'):
result['content'] = WHITESPACE_REGEX.sub(' ', result['content'])
return True