From 9c43ac50bc9662490a12d17b775e886c6bec6675 Mon Sep 17 00:00:00 2001 From: rianli Date: Tue, 3 Feb 2026 18:18:42 +0800 Subject: [PATCH] =?UTF-8?q?fix(desc):=20=E6=9B=B4=E6=96=B0=E6=8F=8F?= =?UTF-8?q?=E8=BF=B0=E6=96=87=E4=BB=B6=E5=8F=8A=E4=B8=80=E4=BA=9B=E8=AF=9D?= =?UTF-8?q?=E6=9C=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- openclaw.plugin.json | 3 +-- src/gateway.ts | 4 ---- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/openclaw.plugin.json b/openclaw.plugin.json index 478c872..245dd6f 100644 --- a/openclaw.plugin.json +++ b/openclaw.plugin.json @@ -6,8 +6,7 @@ "skills": ["skills/qqbot-cron", "skills/qqbot-media"], "capabilities": { "proactiveMessaging": true, - "cronJobs": true, - "streamingMessages": true + "cronJobs": true }, "configSchema": { "type": "object", diff --git a/src/gateway.ts b/src/gateway.ts index f2010b5..f77fb3a 100644 --- a/src/gateway.ts +++ b/src/gateway.ts @@ -1188,11 +1188,7 @@ openclaw cron add \\ // 处理文本中的 URL 点号(防止被 QQ 解析为链接) if (textWithoutImages) { - const originalText = textWithoutImages; textWithoutImages = textWithoutImages.replace(/([a-zA-Z0-9])\.([a-zA-Z0-9])/g, "$1_$2"); - if (textWithoutImages !== originalText && textWithoutImages.trim()) { - textWithoutImages += "\n\n(由于平台限制,回复中的部分符号已被替换)"; - } } try {