From 5dcb1424e70772d35f9dcbf56d781da1dd30739b Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 19 Apr 2026 07:36:10 +0000 Subject: [PATCH] fix: exclude Someday tasks from daily overdue email reminders Match the dashboard's filter behavior so parked (Someday) tasks don't show up in the daily overdue notification emails. --- bwh_hive/tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bwh_hive/tasks.py b/bwh_hive/tasks.py index feddcab..b83b45c 100644 --- a/bwh_hive/tasks.py +++ b/bwh_hive/tasks.py @@ -33,7 +33,7 @@ def send_daily_overdue_notifications() -> None: filters={ "_assign": ["like", f"%{member.user}%"], "due_date": ["<", today], - "status": ["not in", ["Done"]], + "status": ["not in", ["Done", "Someday"]], "is_archived": 0, }, fields=["name", "title", "project", "status", "priority", "due_date"],