You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When Telegram DM topic mode is enabled, cron jobs using deliver: "origin" post back to the same topic where the job was created. If the user creates a job from Topic A but later works in Topic B, cron output lands in Topic A - appearing in a random topic.
Each cron delivery should create a new Telegram DM topic that specific execution, so output is always scoped and discoverable.
Telegram equivalent of #16567 (Discord: fresh thread per cron execution).
Proposed Solution
Add an optional per-job delivery mode for Telegram cron jobs that calls createForumTopic (Bot API 9.4+) before delivering:
Problem or Use Case
When Telegram DM topic mode is enabled, cron jobs using
deliver: "origin"post back to the same topic where the job was created. If the user creates a job from Topic A but later works in Topic B, cron output lands in Topic A - appearing in a random topic.Each cron delivery should create a new Telegram DM topic that specific execution, so output is always scoped and discoverable.
Telegram equivalent of #16567 (Discord: fresh thread per cron execution).
Proposed Solution
Add an optional per-job delivery mode for Telegram cron jobs that calls createForumTopic (Bot API 9.4+) before delivering:
Backward-compatible - existing jobs continue as-is.
Alternatives Considered
Related Issues
Feature Type
Gateway / messaging improvement
Scope
Medium (cron delivery + Telegram adapter topic creation)