fix(group): 互相評論補充也加 reply_to_message_id 引用原訊息
Some checks failed
CD Pipeline / build-and-deploy (push) Has been cancelled

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
OG T
2026-04-03 18:24:51 +08:00
parent 09241f102e
commit dfc1e19c07

View File

@@ -3234,9 +3234,9 @@ class TelegramGateway:
oc_comment, nemo_comment = await asyncio.gather(oc_comment_task, nemo_comment_task, return_exceptions=True)
if oc_comment and not isinstance(oc_comment, Exception):
await self.send_as_openclaw(text=f"🦞 <b>OpenClaw 補充</b>\n\n{oc_comment}")
await self.send_as_openclaw(text=f"🦞 <b>OpenClaw 補充</b>\n\n{oc_comment}", reply_to_message_id=message_id)
if nemo_comment and not isinstance(nemo_comment, Exception):
await self.send_as_nemotron(text=f"🤖 <b>NemoClaw 補充</b>\n\n{nemo_comment}")
await self.send_as_nemotron(text=f"🤖 <b>NemoClaw 補充</b>\n\n{nemo_comment}", reply_to_message_id=message_id)
logger.info("group_message_handled", user_id=user_id, text=text[:50])