From 965f2dd41bdfca9ce4232baf444589ed7c1999ce Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Sun, 17 Aug 2025 20:21:08 -0400 Subject: [PATCH] [tasks] Use title, not description --- vrobbler/apps/tasks/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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":