diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2019-12-02 21:23:41 -0500 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2019-12-02 21:23:41 -0500 |
commit | d07495c2dc1ed2f2af343705a8c4381e4e9cff18 (patch) | |
tree | bf759fb0682f131f819775bff974b59129da925e /src/SMAPI.Web/Controllers | |
parent | 71048825bd460fb89e1ea4a8262ad78575719d47 (diff) | |
download | SMAPI-d07495c2dc1ed2f2af343705a8c4381e4e9cff18.tar.gz SMAPI-d07495c2dc1ed2f2af343705a8c4381e4e9cff18.tar.bz2 SMAPI-d07495c2dc1ed2f2af343705a8c4381e4e9cff18.zip |
fix JSON Validator issues
Diffstat (limited to 'src/SMAPI.Web/Controllers')
-rw-r--r-- | src/SMAPI.Web/Controllers/JsonValidatorController.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SMAPI.Web/Controllers/JsonValidatorController.cs b/src/SMAPI.Web/Controllers/JsonValidatorController.cs index 9e3e81b8..40599abc 100644 --- a/src/SMAPI.Web/Controllers/JsonValidatorController.cs +++ b/src/SMAPI.Web/Controllers/JsonValidatorController.cs @@ -151,7 +151,7 @@ namespace StardewModdingAPI.Web.Controllers return this.View("Index", new JsonValidatorModel(result.ID, schemaName, this.SchemaFormats).SetUploadError($"Pastebin error: {result.Error ?? "unknown error"}")); // redirect to view - return this.Redirect(this.Url.PlainAction("Index", "LogParser", new { schemaName = schemaName, id = result.ID })); + return this.Redirect(this.Url.PlainAction("Index", "JsonValidator", new { schemaName = schemaName, id = result.ID })); } |