Преглед изворни кода

[tasks] Use title, not description

Colin Powell пре 6 дана
родитељ
комит
965f2dd41b
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      vrobbler/apps/tasks/models.py

+ 1 - 1
vrobbler/apps/tasks/models.py

@@ -82,7 +82,7 @@ class Task(LongPlayScrobblableMixin):
 
     def subtitle_for_user(self, user_id):
         scrobble = self.scrobbles(user_id).first()
-        return scrobble.logdata.description or ""
+        return scrobble.logdata.title or ""
 
     @classmethod
     def find_or_create(cls, title: str) -> "Task":