From dfc1e19c07eca17bb8497fe6a65531428686ddc3 Mon Sep 17 00:00:00 2001 From: OG T Date: Fri, 3 Apr 2026 18:24:51 +0800 Subject: [PATCH] =?UTF-8?q?fix(group):=20=E4=BA=92=E7=9B=B8=E8=A9=95?= =?UTF-8?q?=E8=AB=96=E8=A3=9C=E5=85=85=E4=B9=9F=E5=8A=A0=20reply=5Fto=5Fme?= =?UTF-8?q?ssage=5Fid=20=E5=BC=95=E7=94=A8=E5=8E=9F=E8=A8=8A=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Sonnet 4.6 --- apps/api/src/services/telegram_gateway.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/api/src/services/telegram_gateway.py b/apps/api/src/services/telegram_gateway.py index d9c66fee..34817ff5 100644 --- a/apps/api/src/services/telegram_gateway.py +++ b/apps/api/src/services/telegram_gateway.py @@ -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"🦞 OpenClaw 補充\n\n{oc_comment}") + await self.send_as_openclaw(text=f"🦞 OpenClaw 補充\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"🤖 NemoClaw 補充\n\n{nemo_comment}") + await self.send_as_nemotron(text=f"🤖 NemoClaw 補充\n\n{nemo_comment}", reply_to_message_id=message_id) logger.info("group_message_handled", user_id=user_id, text=text[:50])