mirror of https://github.com/searxng/searxng.git
[fix] internet archive scholar: crash when there's no title
This commit is contained in:
parent
0660d20e1d
commit
fb72f71f0a
|
@ -56,7 +56,7 @@ def response(resp):
|
||||||
{
|
{
|
||||||
'template': 'paper.html',
|
'template': 'paper.html',
|
||||||
'url': result['fulltext']['access_url'],
|
'url': result['fulltext']['access_url'],
|
||||||
'title': result['biblio']['title'],
|
'title': result['biblio'].get('title') or result['biblio'].get('container_name'),
|
||||||
'content': html_to_text(content),
|
'content': html_to_text(content),
|
||||||
'publisher': result['biblio'].get('publisher'),
|
'publisher': result['biblio'].get('publisher'),
|
||||||
'doi': doi,
|
'doi': doi,
|
||||||
|
|
Loading…
Reference in New Issue