From e894c877af4f4e75d042ef1a5e0a2872be277d07 Mon Sep 17 00:00:00 2001 From: orignal Date: Sun, 1 Feb 2026 16:13:16 -0500 Subject: [PATCH] fixed typo --- daemon/HTTPServer.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/daemon/HTTPServer.cpp b/daemon/HTTPServer.cpp index b5a063d3..bb86dcdb 100644 --- a/daemon/HTTPServer.cpp +++ b/daemon/HTTPServer.cpp @@ -959,11 +959,11 @@ namespace http { { tmp_s6 << "
\r\n"; if (it->IsOutgoing ()) tmp_s6 << " ⇒ "; - else tmp_s << "   "; + else tmp_s6 << "   "; tmp_s6 << i2p::data::GetIdentHashAbbreviation (it->GetRemoteIdentity ()->GetIdentHash ()) << ": " << "[" << endpoint.address ().to_string () << "]:" << endpoint.port (); if (!it->IsOutgoing ()) tmp_s6 << " ⇒ "; - else tmp_s << "   "; + else tmp_s6 << "   "; tmp_s6 << " [" << it->GetNumSentBytes () << ":" << it->GetNumReceivedBytes () << "]"; if (it->GetRelayTag ()) tmp_s6 << " [itag:" << it->GetRelayTag () << "]";