[tasks] Use title, not description

This commit is contained in:
2025-08-17 20:21:08 -04:00
parent 1a1de02843
commit 965f2dd41b

View File

@ -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":