From 4be507042775bcd52f29a4d8dcae2ee2e0fb9f5d Mon Sep 17 00:00:00 2001 From: bunting szn <108427749+buntingszn@users.noreply.github.com> Date: Fri, 20 Mar 2026 08:33:46 -0500 Subject: [PATCH] fix(cron): add Matrix to scheduler delivery platform_map Matrix is a supported gateway platform but was missing from the cron scheduler's delivery platform_map, causing cron job results to silently fail delivery when targeting Matrix rooms. Co-Authored-By: Claude Opus 4.6 (1M context) --- cron/scheduler.py | 1 + 1 file changed, 1 insertion(+) diff --git a/cron/scheduler.py b/cron/scheduler.py index 417c3eb4..a7c9c6ed 100644 --- a/cron/scheduler.py +++ b/cron/scheduler.py @@ -136,6 +136,7 @@ def _deliver_result(job: dict, content: str) -> None: "slack": Platform.SLACK, "whatsapp": Platform.WHATSAPP, "signal": Platform.SIGNAL, + "matrix": Platform.MATRIX, "email": Platform.EMAIL, "sms": Platform.SMS, }