mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-03-21 16:49:10 +01:00
fix #1352. correct response for 'list' command
This commit is contained in:
parent
60ec03237e
commit
edf4f7695d
1 changed files with 1 additions and 1 deletions
|
@ -593,7 +593,7 @@ namespace client
|
||||||
LogPrint (eLogDebug, "BOB: list");
|
LogPrint (eLogDebug, "BOB: list");
|
||||||
const auto& destinations = m_Owner.GetDestinations ();
|
const auto& destinations = m_Owner.GetDestinations ();
|
||||||
for (const auto& it: destinations)
|
for (const auto& it: destinations)
|
||||||
SendData (it.first.c_str ());
|
SendData (("DATA NICKNAME: " + it.first).c_str ());
|
||||||
SendReplyOK ("Listing done");
|
SendReplyOK ("Listing done");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue