From 8dc412c4cbbb3596b1bb6c59d11e6c191050cbe4 Mon Sep 17 00:00:00 2001 From: mattkatz Date: Sun, 14 Apr 2024 04:48:28 -0400 Subject: [PATCH] remove pure_name since it only applies to statuses --- bookwyrm/views/rss_feed.py | 2 -- 1 file changed, 2 deletions(-) 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")