[fix] internet archive scholar: crash when there's no title

This commit is contained in:
Bnyro 2023-09-22 09:14:55 +02:00 committed by Markus Heiser
parent 0660d20e1d
commit fb72f71f0a

View file

@ -56,7 +56,7 @@ def response(resp):
{
'template': 'paper.html',
'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),
'publisher': result['biblio'].get('publisher'),
'doi': doi,