Update libi2pd/Destination.cpp

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
jeff
2026-04-03 09:13:06 -04:00
committed by GitHub
parent 1397c93de1
commit ac5ba2dbf0
+2 -2
View File
@@ -164,9 +164,9 @@ namespace client
bool
LeaseSetDestination::Reconfigure(const i2p::util::Mapping &params) {
bool dontPublishLeaseSet = true;
bool dontPublishLeaseSet = !m_IsPublic;
params.Get(I2CP_PARAM_DONT_PUBLISH_LEASESET, dontPublishLeaseSet);
m_IsPublic = !dontPublishLeaseSet;
m_IsPublic = !dontPublishLeaseSet;
auto numTags = GetNumTags ();
params.Get (I2CP_PARAM_TAGS_TO_SEND, numTags);
auto numRatchetInboundTags = GetNumRatchetInboundTags ();