From 06c7900eceefe886f0fcbde85300e9214c6b44e6 Mon Sep 17 00:00:00 2001 From: orignal Date: Sat, 12 Jan 2019 18:26:31 -0500 Subject: [PATCH] show LeaseSet type in destination --- daemon/HTTPServer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon/HTTPServer.cpp b/daemon/HTTPServer.cpp index 40f3a0e8..afca493d 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 () << "
\r\n"; + s << it.second->GetIdentHash ().ToBase32 () << " " << (int)it.second->GetStoreType () << "
\r\n"; s << "

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