From 56ebd6e7c02e6e12755ae0d791435531b60bc916 Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Tue, 29 Sep 2020 20:54:49 -0700 Subject: [PATCH] Fixes bug in setting author text on books --- bookwyrm/connectors/abstract_connector.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bookwyrm/connectors/abstract_connector.py b/bookwyrm/connectors/abstract_connector.py index 1137507c..e9c25f8e 100644 --- a/bookwyrm/connectors/abstract_connector.py +++ b/bookwyrm/connectors/abstract_connector.py @@ -147,7 +147,7 @@ class AbstractConnector(ABC): for author in self.get_authors_from_data(data): book.authors.add(author) - book.author_text = ', '.join(a.name for a in book.authors.all()) + book.author_text = ', '.join(a.display_name for a in book.authors.all()) book.save() if not update_cover: