diff options
author | Justas Zabulionis <38244149+jazzzooo@users.noreply.github.com> | 2023-09-14 03:41:15 -0700 |
---|---|---|
committer | Markus Heiser <markus.heiser@darmarIT.de> | 2023-09-14 18:40:15 +0200 |
commit | be888810ba0c98a680558a155212b0012e27a5d8 (patch) | |
tree | b35be32f00c3f06b4acea269ab9548a35a6ebbd2 | |
parent | cf734e60081b99a52c6a46b162313fa089bfe9c2 (diff) | |
download | searxng-be888810ba0c98a680558a155212b0012e27a5d8.tar.gz searxng-be888810ba0c98a680558a155212b0012e27a5d8.zip |
[fix] pubmed content being None
-rw-r--r-- | searx/engines/pubmed.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/engines/pubmed.py b/searx/engines/pubmed.py index 02e282d5f..b6ffd039f 100644 --- a/searx/engines/pubmed.py +++ b/searx/engines/pubmed.py @@ -99,7 +99,7 @@ def response(resp): 'template': 'paper.html', 'url': url, 'title': title, - 'content': content, + 'content': content or "", 'journal': journal, 'issn': [issn], 'authors': authors, |