From 74defbfec6dd06789d186d1f7ce1f55280c64c59 Mon Sep 17 00:00:00 2001 From: Jesse Plamondon-Willard Date: Sat, 20 Jun 2020 12:08:57 -0400 Subject: remove special handling for SMAPI 3.6 beta --- src/SMAPI.Web/Views/Mods/Index.cshtml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/SMAPI.Web/Views/Mods/Index.cshtml b/src/SMAPI.Web/Views/Mods/Index.cshtml index cda2923d..fa77c220 100644 --- a/src/SMAPI.Web/Views/Mods/Index.cshtml +++ b/src/SMAPI.Web/Views/Mods/Index.cshtml @@ -8,8 +8,8 @@ TimeSpan staleAge = DateTimeOffset.UtcNow - Model.LastUpdated; - bool hasBeta = true; // Model.BetaVersion != null; - string betaLabel = "SMAPI 3.6 only"; //"SDV @Model.BetaVersion only"; + bool hasBeta = Model.BetaVersion != null; + string betaLabel = "SDV @Model.BetaVersion only"; } @section Head { -- cgit