mirror of
https://github.com/twisterarmy/twister-core.git
synced 2025-01-24 05:24:34 +00:00
fix work when dht is not loaded yet
This commit is contained in:
parent
ace69ca57e
commit
00ae4b712d
@ -5823,8 +5823,12 @@ retry:
|
|||||||
|
|
||||||
entry session_impl::dht_getLocalData() const
|
entry session_impl::dht_getLocalData() const
|
||||||
{
|
{
|
||||||
entry state = m_dht->state();
|
if( m_dht ) {
|
||||||
return state["storage_table"];
|
entry state = m_dht->state();
|
||||||
|
return state["storage_table"];
|
||||||
|
} else {
|
||||||
|
return entry();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void session_impl::on_dht_router_name_lookup(error_code const& e
|
void session_impl::on_dht_router_name_lookup(error_code const& e
|
||||||
|
Loading…
x
Reference in New Issue
Block a user