From e3c7af3d91bfc09b9251d1f126807fb7fb11e3ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=89=8B=E7=93=9C=E4=B8=80=E5=8D=81=E9=9B=AA?= Date: Tue, 4 Feb 2025 14:42:14 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E8=A7=A3=E5=86=B3nonebot=E5=8F=AF?= =?UTF-8?q?=E8=83=BD=E5=8D=A1=E6=AD=BB=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/onebot/config/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/onebot/config/config.ts b/src/onebot/config/config.ts index becab187..8eccb934 100644 --- a/src/onebot/config/config.ts +++ b/src/onebot/config/config.ts @@ -82,7 +82,7 @@ const OneBotConfigSchema = Type.Object({ network: NetworkConfigSchema, musicSignUrl: Type.String({ default: '' }), enableLocalFile2Url: Type.Boolean({ default: false }), - parseMultMsg: Type.Boolean({ default: true }) + parseMultMsg: Type.Boolean({ default: false }) }); export type OneBotConfig = Static;