[tasks] Fix bug in syncing orgmode tasks without notes
All checks were successful
build / test (push) Successful in 1m50s

This commit is contained in:
2026-06-01 11:02:56 -04:00
parent 039c58cf89
commit daabd2f37f
2 changed files with 16 additions and 3 deletions

View File

@ -235,7 +235,7 @@ class EmacsWebhookView(APIView):
if task_in_progress:
emacs_scrobble_update_task(
post_data.get("source_id"),
post_data.get("notes", []),
post_data.get("notes") or [],
user_id,
description=post_data.get("body"),
)