1
0
mirror of https://github.com/PurpleI2P/i2pd.git synced 2025-01-22 08:14:15 +00:00

re-insert introducer back

This commit is contained in:
orignal 2022-08-06 20:05:08 -04:00
parent 53934a470b
commit 8bb9a57908

View File

@ -876,7 +876,10 @@ namespace transport
{ {
session->SetCreationTime (session->GetCreationTime () + SSU2_TO_INTRODUCER_SESSION_DURATION); session->SetCreationTime (session->GetCreationTime () + SSU2_TO_INTRODUCER_SESSION_DURATION);
if (std::find (newList.begin (), newList.end (), it) == newList.end ()) if (std::find (newList.begin (), newList.end (), it) == newList.end ())
newList.push_back (it); {
newList.push_back (it);
sessions.push_back (session);
}
} }
} }
} }