diff --git a/vrobbler/apps/tasks/models.py b/vrobbler/apps/tasks/models.py index ec29326..06d5450 100644 --- a/vrobbler/apps/tasks/models.py +++ b/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":