diff options
| author | 2023-08-18 10:44:14 +0100 | |
|---|---|---|
| committer | 2023-08-18 10:44:14 +0100 | |
| commit | 923fbcb877aeba513489ed6410792c4f83c2e81d (patch) | |
| tree | 3858ce6f7549d648017fd4a42ba15c377b1e0bb0 | |
| parent | Fix some usages of "SSL" that have snuck back in. (diff) | |
Fix an unclosed tag in the httpd_stats module.
| -rw-r--r-- | src/modules/m_httpd_stats.cpp | 3 |
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(); } |
