aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_httpd_stats.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2023-08-18 10:44:14 +0100
committerGravatar Sadie Powell2023-08-18 10:44:14 +0100
commit923fbcb877aeba513489ed6410792c4f83c2e81d (patch)
tree3858ce6f7549d648017fd4a42ba15c377b1e0bb0 /src/modules/m_httpd_stats.cpp
parentFix some usages of "SSL" that have snuck back in. (diff)
Fix an unclosed tag in the httpd_stats module.
Diffstat (limited to 'src/modules/m_httpd_stats.cpp')
-rw-r--r--src/modules/m_httpd_stats.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/modules/m_httpd_stats.cpp b/src/modules/m_httpd_stats.cpp
index 805ca297c..01a67a968 100644
--- a/src/modules/m_httpd_stats.cpp
+++ b/src/modules/m_httpd_stats.cpp
@@ -132,7 +132,8 @@ namespace Stats
.Attribute("name", item->name);
const std::string value = item->ToHuman(ext, obj);
- serializer.Attribute("value", value);
+ serializer.Attribute("value", value)
+ .EndBlock();
}
serializer.EndBlock();
}