1
0
mirror of https://github.com/janeczku/calibre-web synced 2024-06-24 22:23:16 +00:00

Additional fix #1016

This commit is contained in:
Ozzieisaacs 2019-08-20 19:12:40 +02:00
parent f543d7f486
commit 23b3bfd967
3 changed files with 5 additions and 5 deletions

View File

@ -27,7 +27,7 @@ log = logger.create()
try: from . import goodreads_support
except ImportError as err:
log.debug("cannot import goodreads, showing authors-metadata will not work: %s", err)
goodreads = None
goodreads_support = None
try: from . import simpleldap as ldap

View File

@ -172,7 +172,7 @@
{% if feature_support['goodreads'] %}
<div class="form-group">
<input type="checkbox" id="config_use_goodreads" name="config_use_goodreads" data-control="goodreads-settings" {% if config.config_use_goodreads %}checked{% endif %}>
<label for="config_use_goodreads">{{_('Use')}} Goodreads</label>
<label for="config_use_goodreads">{{_('Use Goodreads')}}</label>
<a href="https://www.goodreads.com/api/keys" target="_blank" style="margin-left: 5px">{{_('Obtain an API Key')}}</a>
</div>
<div data-related="goodreads-settings">

View File

@ -565,9 +565,9 @@ def render_author_books(page, author_id, order):
author_info = None
other_books = []
if services.goodreads and config.config_use_goodreads:
author_info = services.goodreads.get_author_info(author_name)
other_books = services.goodreads.get_other_books(author_info, entries)
if services.goodreads_support and config.config_use_goodreads:
author_info = services.goodreads_support.get_author_info(author_name)
other_books = services.goodreads_support.get_other_books(author_info, entries)
return render_title_template('author.html', entries=entries, pagination=pagination, id=author_id,
title=_(u"Author: %(name)s", name=author_name), author=author_info,