mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-03-07 06:09:42 +00:00
fixed #369
This commit is contained in:
@@ -316,7 +316,8 @@ namespace data
|
|||||||
const std::string& fullPath = it1->path();
|
const std::string& fullPath = it1->path();
|
||||||
#endif
|
#endif
|
||||||
auto r = std::make_shared<RouterInfo>(fullPath);
|
auto r = std::make_shared<RouterInfo>(fullPath);
|
||||||
if (!r->IsUnreachable () && (!r->UsesIntroducer () || ts < r->GetTimestamp () + 3600*1000LL)) // 1 hour
|
if (r->GetRouterIdentity () && !r->IsUnreachable () &&
|
||||||
|
(!r->UsesIntroducer () || ts < r->GetTimestamp () + 3600*1000LL)) // 1 hour
|
||||||
{
|
{
|
||||||
r->DeleteBuffer ();
|
r->DeleteBuffer ();
|
||||||
r->ClearProperties (); // properties are not used for regular routers
|
r->ClearProperties (); // properties are not used for regular routers
|
||||||
|
|||||||
Reference in New Issue
Block a user