fix: Synology 응답에서 마크다운 제거 — **bold**, # header, - list → 순수 텍스트

상태 메시지(이모지)는 raw=True로 유지

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Hyungi Ahn
2026-04-06 12:57:50 +09:00
parent a16ff2ea88
commit 40c5d3cf21
3 changed files with 18 additions and 5 deletions

View File

@@ -69,7 +69,7 @@ async def synology_webhook(request: Request):
logger.info("Synology job %s from %s: %s", job.id, username, text[:50])
# "처리 중" 메시지 먼저 전송 (typing 느낌)
await send_to_synology("🤔 생각 중...")
await send_to_synology("🤔 생각 중...", raw=True)
# 파이프라인 시작 (비동기)
await jq_module.job_queue.submit(job)