diff options
-rw-r--r-- | docs/release-notes.md | 1 | ||||
-rw-r--r-- | src/SMAPI.Web/Controllers/IndexController.cs | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/docs/release-notes.md b/docs/release-notes.md index be827cc7..0ce79d9b 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -24,6 +24,7 @@ * Fixed JSON validator no longer letting you change format when viewing results. * Fixed JSON validator for Content Patcher schema not requiring `Default` if `AllowBlank` omitted. * Fixed log parser not correctly handling content packs with no author (thanks to danvolchek!). + * Fixed main sidebar link pointing to wiki instead of home page. * For modders: * Added asset propagation for... diff --git a/src/SMAPI.Web/Controllers/IndexController.cs b/src/SMAPI.Web/Controllers/IndexController.cs index a887f14a..080285ab 100644 --- a/src/SMAPI.Web/Controllers/IndexController.cs +++ b/src/SMAPI.Web/Controllers/IndexController.cs @@ -16,7 +16,6 @@ namespace StardewModdingAPI.Web.Controllers { /// <summary>Provides an info/download page about SMAPI.</summary> [Route("")] - [Route("install")] internal class IndexController : Controller { /********* |