From 1f9cf6ed7cd84da07d92c1755956c25d698f2527 Mon Sep 17 00:00:00 2001 From: orignal Date: Thu, 28 Mar 2019 19:00:56 -0400 Subject: [PATCH] show lookup keys --- daemon/HTTPServer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon/HTTPServer.cpp b/daemon/HTTPServer.cpp index b7771d56..20c9f3aa 100644 --- a/daemon/HTTPServer.cpp +++ b/daemon/HTTPServer.cpp @@ -358,7 +358,7 @@ namespace http { { s << "
\r\n\r\n

\r\n"; for(auto& it: dest->GetLeaseSets ()) - s << it.second->GetIdentHash ().ToBase32 () << " " << (int)it.second->GetStoreType () << "
\r\n"; + s << it.first.ToBase32 () << " " << (int)it.second->GetStoreType () << "
\r\n"; s << "

\r\n
\r\n"; } else s << "LeaseSets: 0
\r\n";