summaryrefslogtreecommitdiff
path: root/src/SMAPI.Web/Views
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2022-06-19 17:21:53 -0400
committerJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2022-06-19 17:21:53 -0400
commite0ef8a20a5e7ccf1de32ff1a06f1aa62e37eb1db (patch)
treed51b5302d902f18021b72158cc95c249616ede2b /src/SMAPI.Web/Views
parent8e9237bdd7ec179975c9be5e28c811b42007e707 (diff)
downloadSMAPI-e0ef8a20a5e7ccf1de32ff1a06f1aa62e37eb1db.tar.gz
SMAPI-e0ef8a20a5e7ccf1de32ff1a06f1aa62e37eb1db.tar.bz2
SMAPI-e0ef8a20a5e7ccf1de32ff1a06f1aa62e37eb1db.zip
fix mod count in log parser metadata
Diffstat (limited to 'src/SMAPI.Web/Views')
-rw-r--r--src/SMAPI.Web/Views/LogParser/Index.cshtml2
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 5e55906d..33239a2b 100644
--- a/src/SMAPI.Web/Views/LogParser/Index.cshtml
+++ b/src/SMAPI.Web/Views/LogParser/Index.cshtml
@@ -293,7 +293,7 @@ else if (log?.IsValid == true)
<table
id="metadata"
class="table"
- data-code-mods="@log.Mods.Count(p => !p.IsContentPack)"
+ data-code-mods="@log.Mods.Count(p => p.IsCodeMod)"
data-content-packs="@log.Mods.Count(p => p.IsContentPack)"
data-os="@log.OperatingSystem"
data-game-version="@log.GameVersion"