summaryrefslogtreecommitdiff
path: root/src/SMAPI.Web
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2020-06-20 11:31:01 -0400
committerJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2020-06-20 11:31:01 -0400
commitd02a40de997edf493354e85eb018ded84eb8f782 (patch)
treeed678caf20140168aff6d4816e882cef6a057a7e /src/SMAPI.Web
parentb32cad4046916344665c67923482db09cacb366f (diff)
downloadSMAPI-d02a40de997edf493354e85eb018ded84eb8f782.tar.gz
SMAPI-d02a40de997edf493354e85eb018ded84eb8f782.tar.bz2
SMAPI-d02a40de997edf493354e85eb018ded84eb8f782.zip
change default JSON validator schema to none
Diffstat (limited to 'src/SMAPI.Web')
-rw-r--r--src/SMAPI.Web/Controllers/JsonValidatorController.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SMAPI.Web/Controllers/JsonValidatorController.cs b/src/SMAPI.Web/Controllers/JsonValidatorController.cs
index 8fb9e06a..b76d41a3 100644
--- a/src/SMAPI.Web/Controllers/JsonValidatorController.cs
+++ b/src/SMAPI.Web/Controllers/JsonValidatorController.cs
@@ -33,7 +33,7 @@ namespace StardewModdingAPI.Web.Controllers
};
/// <summary>The schema ID to use if none was specified.</summary>
- private string DefaultSchemaID = "manifest";
+ private string DefaultSchemaID = "none";
/// <summary>A token in an error message which indicates that the child errors should be displayed instead.</summary>
private readonly string TransparentToken = "$transparent";