Browse Source

fix #1352. correct response for 'list' command

pull/1359/head
orignal 5 years ago
parent
commit
edf4f7695d
  1. 2
      libi2pd_client/BOB.cpp

2
libi2pd_client/BOB.cpp

@ -593,7 +593,7 @@ namespace client @@ -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");
}

Loading…
Cancel
Save