From 559f95533d0214231d57e98e1fec98e7112d8622 Mon Sep 17 00:00:00 2001 From: R4SAS Date: Wed, 22 Nov 2017 02:42:41 +0300 Subject: [PATCH] small fixes --- daemon/HTTPServer.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/daemon/HTTPServer.cpp b/daemon/HTTPServer.cpp index 48b69a49..ea18e93a 100644 --- a/daemon/HTTPServer.cpp +++ b/daemon/HTTPServer.cpp @@ -245,7 +245,7 @@ namespace http { ShowTraffic (s, i2p::transport::transports.GetTotalTransitTransmittedBytes ()); s << " (" << (double) i2p::transport::transports.GetTransitBandwidth () / 1024 << " KiB/s)
\r\n"; s << "Data path: " << i2p::fs::GetDataDir() << "
\r\n"; - s << "
\r\n\r\n

\r\n"; + s << "

\r\n\r\n

\r\n"; if(includeHiddenContent) { s << "Router Ident: " << i2p::context.GetRouterInfo().GetIdentHashBase64() << "
\r\n"; s << "Router Family: " << i2p::context.GetRouterInfo().GetProperty("family") << "
\r\n"; @@ -357,7 +357,7 @@ namespace http { s << "
\r\n"; s << "Tags
Incoming: " << dest->GetNumIncomingTags () << "
"; if (!dest->GetSessions ().empty ()) { - s << "

\r\n\r\n

\r\n"; + s << "

\r\n\r\n

\r\n"; for (const auto& it: dest->GetSessions ()) s << i2p::client::context.GetAddressBook ().ToAddress(it.first) << " " << it.second->GetNumOutgoingTags () << "
\r\n"; s << "

\r\n
\r\n";