X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/b2d342589a7889a3b096e7192453d53bd28eed7d..refs/heads/search-experimental:/src/opds/views.py diff --git a/src/opds/views.py b/src/opds/views.py index 001b69d7c..189ff0f5a 100644 --- a/src/opds/views.py +++ b/src/opds/views.py @@ -190,14 +190,14 @@ class AcquisitionFeed(Feed): def item_author_name(self, book): try: - return book.tags.filter(category='author')[0].name - except KeyError: + return book.authors().first().name + except AttributeError: return u'' def item_author_link(self, book): try: - return book.tags.filter(category='author')[0].get_absolute_url() - except KeyError: + return book.authors().first().get_absolute_url() + except AttributeError: return u'' def item_enclosure_url(self, book):