From 3cc8bcf8d511b3c13a4af77015a754d27528c028 Mon Sep 17 00:00:00 2001 From: weekendi2p Date: Tue, 26 Apr 2016 23:06:45 +0200 Subject: [PATCH] shows family name in webiface (moved under status line) --- HTTPServer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/HTTPServer.cpp b/HTTPServer.cpp index 1c268613..08b67e22 100644 --- a/HTTPServer.cpp +++ b/HTTPServer.cpp @@ -405,7 +405,6 @@ namespace util void HTTPConnection::FillContent (std::stringstream& s) { - s << "Family: " << i2p::context.GetFamilyString() << "
\r\n"; s << "Uptime: " << boost::posix_time::to_simple_string ( boost::posix_time::time_duration (boost::posix_time::seconds ( i2p::context.GetUptime ()))) << "
\r\n"; @@ -418,6 +417,7 @@ namespace util default: s << "Unknown"; } s << "
\r\n"; + s << "Family: " << i2p::context.GetFamilyString() << "
\r\n"; s << "Tunnel creation success rate: " << i2p::tunnel::tunnels.GetTunnelCreationSuccessRate () << "%
\r\n"; s << "Received: "; s << std::fixed << std::setprecision(2);