diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2019-12-24 13:59:11 -0500 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2019-12-24 13:59:11 -0500 |
commit | 2833ad9a621d82cfef5be3868f89c9b2db436cf6 (patch) | |
tree | 898c859cb645cb916bcc39a0fca80fb6ec8d64a8 /src/SMAPI.Web/Views/JsonValidator | |
parent | d932a11f51392cd42ab501185982af971f954c8d (diff) | |
download | SMAPI-2833ad9a621d82cfef5be3868f89c9b2db436cf6.tar.gz SMAPI-2833ad9a621d82cfef5be3868f89c9b2db436cf6.tar.bz2 SMAPI-2833ad9a621d82cfef5be3868f89c9b2db436cf6.zip |
fix log parser & JSON validator showing relative share URL
Diffstat (limited to 'src/SMAPI.Web/Views/JsonValidator')
-rw-r--r-- | src/SMAPI.Web/Views/JsonValidator/Index.cshtml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SMAPI.Web/Views/JsonValidator/Index.cshtml b/src/SMAPI.Web/Views/JsonValidator/Index.cshtml index fb43823a..f3696578 100644 --- a/src/SMAPI.Web/Views/JsonValidator/Index.cshtml +++ b/src/SMAPI.Web/Views/JsonValidator/Index.cshtml @@ -5,7 +5,7 @@ @{ // get view data - string curPageUrl = this.Url.PlainAction("Index", "JsonValidator", new { schemaName = Model.SchemaName, id = Model.PasteID }); + string curPageUrl = this.Url.PlainAction("Index", "JsonValidator", new { schemaName = Model.SchemaName, id = Model.PasteID }, absoluteUrl: true); string newUploadUrl = this.Url.PlainAction("Index", "JsonValidator", new { schemaName = Model.SchemaName }); string schemaDisplayName = null; bool isValidSchema = Model.SchemaName != null && Model.SchemaFormats.TryGetValue(Model.SchemaName, out schemaDisplayName) && schemaDisplayName?.ToLower() != "none"; |