mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2026-08-27 22:35:02 +00:00
Fixup i2cp option on reconfigure.
Make sure i2cp.dontPublishLeaseSet option logic correctly applies on reconfigure.
This commit is contained in:
@@ -161,10 +161,12 @@ namespace client
|
||||
CleanUp (); // GarlicDestination
|
||||
}
|
||||
|
||||
bool LeaseSetDestination::Reconfigure(const i2p::util::Mapping& params)
|
||||
{
|
||||
params.Get (I2CP_PARAM_DONT_PUBLISH_LEASESET, m_IsPublic);
|
||||
|
||||
bool
|
||||
LeaseSetDestination::Reconfigure(const i2p::util::Mapping ¶ms) {
|
||||
bool dontPublishLeaseSet = true;
|
||||
params.Get(I2CP_PARAM_DONT_PUBLISH_LEASESET, dontPublishLeaseSet);
|
||||
m_IsPublic = !dontPublishLeaseSet;
|
||||
auto numTags = GetNumTags ();
|
||||
params.Get (I2CP_PARAM_TAGS_TO_SEND, numTags);
|
||||
auto numRatchetInboundTags = GetNumRatchetInboundTags ();
|
||||
|
||||
Reference in New Issue
Block a user