This commit has no recorded session.
diff
commit 25c28e833595566d7e374a1fa63083415420a6c2Author: Colin Powell <colin@unbl.ink>Date: Thu Jun 11 10:34:20 2026 -0400 [books] Fix bug in subtitle gen@@ -184,7 +184,9 @@ class Book(LongPlayScrobblableMixin): @property def subtitle(self):- subtitle = self.author+ subtitle = ""+ if self.author:+ subtitle += self.author.name if self.issue_number and "Issue" not in str(self.title): subtitle += " - Issue {self.issue_number}" if self.volume_number and "Volume" not in str(self.title):