I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Unverified Commit d9c932ac authored by zzz's avatar zzz
Browse files

Compile fix previous checkin

parent d680cfd8
No related branches found
No related tags found
No related merge requests found
......@@ -151,7 +151,7 @@ class IntroductionManager {
long id2 = peer.getTheyRelayToUsAs();
//if (id2 > 0 && _inbound.size() < MAX_INBOUND) {
// test
if (id2 > 0 && (_inbound.size() < MAX_INBOUND || peer.getVersion() == 2) {
if (id2 > 0 && (_inbound.size() < MAX_INBOUND || peer.getVersion() == 2)) {
added = true;
_inbound.put(Long.valueOf(id2), peer);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment