From d8c4460fe35e9a471b8b115b73c39527e5492477 Mon Sep 17 00:00:00 2001 From: dhruv-saxena <6254307+dhruv-saxena@users.noreply.github.com> Date: Tue, 12 May 2026 17:13:08 -0700 Subject: [PATCH] fix(cron): include whatsapp in _HOME_TARGET_ENV_VARS MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cron jobs using `deliver: whatsapp` were silently dropped because the resolver's home-channel env var dict in cron/scheduler.py listed every messaging platform except whatsapp. _resolve_delivery_targets() returned [] and no message was sent — but jobs.json marked the run successful and no log line surfaced the failure. The gateway adapter and the send_message tool path both honored WHATSAPP_HOME_CHANNEL correctly; only the cron path missed. Adds 'whatsapp' -> 'WHATSAPP_HOME_CHANNEL' to _HOME_TARGET_ENV_VARS. Verified end-to-end with multiple cron pings landing in WhatsApp self-chat after the fix. Fixes #22997 --- cron/scheduler.py | 1 + 1 file changed, 1 insertion(+) diff --git a/cron/scheduler.py b/cron/scheduler.py index 7e39df578bb..b585ef2e42b 100644 --- a/cron/scheduler.py +++ b/cron/scheduler.py @@ -111,6 +111,7 @@ _HOME_TARGET_ENV_VARS = { "weixin": "WEIXIN_HOME_CHANNEL", "bluebubbles": "BLUEBUBBLES_HOME_CHANNEL", "qqbot": "QQBOT_HOME_CHANNEL", + "whatsapp": "WHATSAPP_HOME_CHANNEL", } # Legacy env var names kept for back-compat. Each entry is the current