From 73009d68b44b0f8e9c273ed0f9a99725c7cf4f61 Mon Sep 17 00:00:00 2001 From: BTMuli Date: Tue, 21 Apr 2026 12:02:58 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20=E5=85=81=E8=AE=B8=E8=81=94?= =?UTF-8?q?=E5=90=88=E7=B1=BB=E5=9E=8B=E9=AA=8C=E8=AF=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/plugins/Hutao/utils/RawValidator.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/Hutao/utils/RawValidator.ts b/src/plugins/Hutao/utils/RawValidator.ts index 88d80791..20565420 100644 --- a/src/plugins/Hutao/utils/RawValidator.ts +++ b/src/plugins/Hutao/utils/RawValidator.ts @@ -10,7 +10,7 @@ import AbyssJson from "../schema/abyss.json" with { type: "json" }; import ChallengeJson from "../schema/challenge.json" with { type: "json" }; import CombatJson from "../schema/combat.json" with { type: "json" }; -const ajv = new Ajv.Ajv(); +const ajv = new Ajv.Ajv({ strictTypes: false }); const AbyssValidate = ajv.compile(AbyssJson); const ChallengeValidate = ajv.compile(ChallengeJson);