mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-02-08 22:13:48 +01:00
fix
This commit is contained in:
parent
ff6d66b96e
commit
808b758cd7
1 changed files with 1 additions and 1 deletions
|
@ -544,7 +544,7 @@ namespace client
|
||||||
if (dest)
|
if (dest)
|
||||||
{
|
{
|
||||||
auto datagram = dest->GetDatagramDestination ();
|
auto datagram = dest->GetDatagramDestination ();
|
||||||
if (!datagram)
|
if (datagram == nullptr)
|
||||||
datagram = dest->CreateDatagramDestination ();
|
datagram = dest->CreateDatagramDestination ();
|
||||||
datagram->SetReceiver (std::bind (&AddressBook::HandleLookupResponse, this,
|
datagram->SetReceiver (std::bind (&AddressBook::HandleLookupResponse, this,
|
||||||
std::placeholders::_1, std::placeholders::_2, std::placeholders::_3, std::placeholders::_4, std::placeholders::_5),
|
std::placeholders::_1, std::placeholders::_2, std::placeholders::_3, std::placeholders::_4, std::placeholders::_5),
|
||||||
|
|
Loading…
Add table
Reference in a new issue