diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2022-11-13 12:15:19 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-13 12:15:19 -0500 |
commit | 0fbf99cd837bda082fc991c9efc533379d810b85 (patch) | |
tree | 54b31a5fe7b127a978c293cdf25636dda6d502d0 | |
parent | b95d2a3f935dde0118205f94b32f05f115afdf71 (diff) | |
parent | d521c20e8ae123bdcdbcabcc246ca24bc74dad3c (diff) | |
download | SMAPI-0fbf99cd837bda082fc991c9efc533379d810b85.tar.gz SMAPI-0fbf99cd837bda082fc991c9efc533379d810b85.tar.bz2 SMAPI-0fbf99cd837bda082fc991c9efc533379d810b85.zip |
Merge pull request #885 from AnotherPillow/develop
Only check for Error Handler when on SMAPI 3.9+
-rw-r--r-- | src/SMAPI.Web/Views/LogParser/Index.cshtml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SMAPI.Web/Views/LogParser/Index.cshtml b/src/SMAPI.Web/Views/LogParser/Index.cshtml index c1251c21..b989417e 100644 --- a/src/SMAPI.Web/Views/LogParser/Index.cshtml +++ b/src/SMAPI.Web/Views/LogParser/Index.cshtml @@ -248,7 +248,7 @@ else if (log?.IsValid == true) { <h2>Suggested fixes</h2> <ul id="fix-list"> - @if (errorHandler is null) + @if (errorHandler is null && log.ApiVersionParsed?.IsNewerThan("3.8.4") is true) { <li class="important">You don't have the <strong>Error Handler</strong> mod installed. This automatically prevents many game or mod errors. You can <a href="https://stardewvalleywiki.com/Modding:Player_Guide#Install_SMAPI">reinstall SMAPI</a> to re-add it.</li> } |