diff --git a/bookwyrm/views/rss_feed.py b/bookwyrm/views/rss_feed.py index 31523a3d6..b1487c9d5 100644 --- a/bookwyrm/views/rss_feed.py +++ b/bookwyrm/views/rss_feed.py @@ -187,8 +187,6 @@ class RssShelfFeed(Feed): def item_title(self, item): """render the item title""" - if hasattr(item, "pure_name") and item.pure_name: - return item.pure_name authors = item.authors authors.display_name = f"{item.author_text}:" template = get_template("rss/title.html")