[scrobbles] Fix note str output
All checks were successful
build & deploy / test (push) Successful in 1m41s
build & deploy / deploy (push) Has been skipped

This commit is contained in:
2026-03-11 11:35:01 -04:00
parent 2dc7acc536
commit 5d9834b63d
3 changed files with 115 additions and 16 deletions

View File

@ -54,7 +54,7 @@ class TaskLogData(BaseLogData):
if isinstance(note, str):
lines.append(note)
return "\n".join(lines)
return "\n".join(lines).encode("utf-8").decode("unicode_escape")
class Task(LongPlayScrobblableMixin):