Fix review notifications BackgroundTasks args

This commit is contained in:
Jarvis
2026-02-02 17:29:49 +00:00
parent 191947b90a
commit a2c60da161

View File

@@ -216,9 +216,11 @@ def review_task(
# Notify assignee (comment.created will exclude author)
background.add_task(
notify_openclaw,
session,
NotifyContext(
event="comment.created", actor_employee_id=actor_employee_id, task=task, comment=c
event="comment.created",
actor_employee_id=actor_employee_id,
task_id=task.id,
comment_id=c.id,
),
)