fix: 解决nonebot可能卡死问题

This commit is contained in:
手瓜一十雪
2025-02-04 14:42:14 +08:00
parent a7ee21bfd8
commit e3c7af3d91

View File

@@ -82,7 +82,7 @@ const OneBotConfigSchema = Type.Object({
network: NetworkConfigSchema, network: NetworkConfigSchema,
musicSignUrl: Type.String({ default: '' }), musicSignUrl: Type.String({ default: '' }),
enableLocalFile2Url: Type.Boolean({ default: false }), enableLocalFile2Url: Type.Boolean({ default: false }),
parseMultMsg: Type.Boolean({ default: true }) parseMultMsg: Type.Boolean({ default: false })
}); });
export type OneBotConfig = Static<typeof OneBotConfigSchema>; export type OneBotConfig = Static<typeof OneBotConfigSchema>;