From 15ab3ccd0908895cb5d8ded1cc2be4a8d895ef21 Mon Sep 17 00:00:00 2001 From: Christopher Hiller Date: Sat, 6 May 2023 21:43:03 -0700 Subject: [PATCH] fix invalid field in manifest.json VS is complaining that this line should be an array. --- src/SMAPI.Web/wwwroot/schemas/manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SMAPI.Web/wwwroot/schemas/manifest.json b/src/SMAPI.Web/wwwroot/schemas/manifest.json index 7457b993..727e5cbd 100644 --- a/src/SMAPI.Web/wwwroot/schemas/manifest.json +++ b/src/SMAPI.Web/wwwroot/schemas/manifest.json @@ -43,7 +43,7 @@ "description": "The DLL filename SMAPI should load for this mod. Mutually exclusive with ContentPackFor.", "type": "string", "pattern": "^[a-zA-Z0-9_.-]+\\.dll$", - "examples": "LookupAnything.dll", + "examples": ["LookupAnything.dll"], "@errorMessages": { "pattern": "Invalid value; must be a filename ending with .dll." }