From 9bb1ffeb44a19fc08d67875f5b77d31af12ee9f4 Mon Sep 17 00:00:00 2001 From: liuwei Date: Mon, 24 Nov 2025 14:05:41 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=8Dat=EF=BC=8C=E6=98=BE=E5=BE=97=E7=9C=9F?= =?UTF-8?q?=E5=AE=9E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- plugins/dify/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/dify/main.py b/plugins/dify/main.py index e6a7db9..4c07b81 100644 --- a/plugins/dify/main.py +++ b/plugins/dify/main.py @@ -223,7 +223,7 @@ class DifyPlugin(MessagePluginInterface): await bot.send_image_message(target, Path(respath)) else: # 如果是普通文本,使用发送文本方法 - await bot.send_at_message(target, response, [sender]) + await bot.send_text_message(target, response, sender) return True, "发送成功" except Exception as e: self.LOG.error(f"发送响应消息时出错: {e}")