From 3818d53752a5697f5e92c44cdbc976cfce17bad4 Mon Sep 17 00:00:00 2001 From: Jesse Plamondon-Willard Date: Mon, 30 Dec 2019 10:33:07 -0500 Subject: fix main sidebar link pointing to wiki instead of home page --- docs/release-notes.md | 1 + src/SMAPI.Web/Controllers/IndexController.cs | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) 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 { /// Provides an info/download page about SMAPI. [Route("")] - [Route("install")] internal class IndexController : Controller { /********* -- cgit