chore: auto-commit from dashboard

This commit is contained in:
2026-04-02 19:43:01 +00:00
parent d9450ce70d
commit 5fafc29dc1
9 changed files with 383 additions and 20 deletions

View File

@@ -329,7 +329,9 @@ class Scheduler:
self._save_jobs()
# Send output via callback
if self._send_callback and result_text:
if not result_text:
logger.warning("Job '%s' produced empty result, skipping send", name)
elif self._send_callback:
try:
await self._send_callback(job["channel"], result_text)
except Exception as exc: