1
0
mirror of https://github.com/PurpleI2P/i2pd.git synced 2025-02-02 02:44:15 +00:00

update LeaseSet2 if store type changed

This commit is contained in:
orignal 2019-03-07 14:51:05 -05:00
parent 557244bc3f
commit 09b1b120d7

View File

@ -304,7 +304,7 @@ namespace data
if (leaseSet->IsValid ()) if (leaseSet->IsValid ())
{ {
auto it = m_LeaseSets.find(ident); auto it = m_LeaseSets.find(ident);
if (it == m_LeaseSets.end () || it->second->GetStoreType () == i2p::data::NETDB_STORE_TYPE_LEASESET || if (it == m_LeaseSets.end () || it->second->GetStoreType () != storeType ||
leaseSet->GetPublishedTimestamp () > it->second->GetPublishedTimestamp ()) leaseSet->GetPublishedTimestamp () > it->second->GetPublishedTimestamp ())
{ {
// TODO: implement actual update // TODO: implement actual update