This commit is contained in:
@ -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):
|
||||
|
||||
Reference in New Issue
Block a user