From edf4f7695d690e06e19df19a3d6dfdc22dba98a0 Mon Sep 17 00:00:00 2001 From: orignal Date: Wed, 22 May 2019 12:45:50 -0400 Subject: [PATCH] fix #1352. correct response for 'list' command --- libi2pd_client/BOB.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libi2pd_client/BOB.cpp b/libi2pd_client/BOB.cpp index 94d74726..e60dd5ca 100644 --- a/libi2pd_client/BOB.cpp +++ b/libi2pd_client/BOB.cpp @@ -593,7 +593,7 @@ namespace client LogPrint (eLogDebug, "BOB: list"); const auto& destinations = m_Owner.GetDestinations (); for (const auto& it: destinations) - SendData (it.first.c_str ()); + SendData (("DATA NICKNAME: " + it.first).c_str ()); SendReplyOK ("Listing done"); }