From 89de330e2d102d59c6732b017fee7ec8d04bc186 Mon Sep 17 00:00:00 2001 From: ninemine <1371605831@qq.com> Date: Thu, 13 Nov 2025 17:11:20 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E9=BB=98=E8=AE=A4=E5=85=A5?= =?UTF-8?q?=E5=8F=A3=E5=BF=BD=E7=95=A5command=E5=8F=82=E6=95=B0=E7=9A=84?= =?UTF-8?q?=E9=94=99=E8=AF=AF?= 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 8f2a47c..829e937 100644 --- a/CoreRouters/callback.py +++ b/CoreRouters/callback.py @@ -118,7 +118,7 @@ async def handle_command(command: str, message: str, return await plugin.callback(message, chat_id, user_id) elif "default" in PluginInterface.plugin_instances: logger.Log("Info", f"未找到插件注册指令: {command}, 使用默认插件: {PluginInterface.plugin_instances["default"].__class__.__name__}") - return await PluginInterface.plugin_instances["default"].callback(message, chat_id, user_id) + return await PluginInterface.plugin_instances["default"].callback(command+" "+message, chat_id, user_id) else: return f"❌ 未识别指令: {command}" except Exception as e: