sessions / 25c28e833595566d7e374a1fa63083415420a6c2

/home/powellc/src/code.unbl.ink/secstate/vrobbler

This commit has no recorded session.

diff

ignore whitespace

commit 25c28e833595566d7e374a1fa63083415420a6c2Author: Colin Powell <colin@unbl.ink>Date:   Thu Jun 11 10:34:20 2026 -0400    [books] Fix bug in subtitle gendiff --git a/vrobbler/apps/books/models.py b/vrobbler/apps/books/models.pyindex 09e9e1c..a41ee44 100644--- a/vrobbler/apps/books/models.py+++ b/vrobbler/apps/books/models.py@@ -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):