From ac68bb27a36ca5a8550a393d340892e3ca0d4dab Mon Sep 17 00:00:00 2001 From: ninemine <1371605831@qq.com> Date: Mon, 10 Nov 2025 10:06:26 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8Dat=E5=AF=BC=E8=87=B4=E5=91=BD?= =?UTF-8?q?=E4=BB=A4=E6=97=A0=E6=B3=95=E8=AF=86=E5=88=AB=E7=9A=84=E9=97=AE?= =?UTF-8?q?=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CoreRouters/callback.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CoreRouters/callback.py b/CoreRouters/callback.py index 8c0c95d..7364969 100644 --- a/CoreRouters/callback.py +++ b/CoreRouters/callback.py @@ -78,7 +78,7 @@ async def callback_receive(request: Request): return JSONResponse({"result": "error", "message": str(e)}) # 解析指令 - content = callback_data.content + content = parse_message_after_at(callback_data.content) command = content.split(" ")[0] message = content[len(command):].strip() logger.Log("Info", f"识别指令: command={command}")