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

Skip to content
Snippets Groups Projects
Commit c67ff137 authored by eyedeekay's avatar eyedeekay
Browse files

Router: fix broken null check in shouldThrottleBurstLookup

parent 2af65243
No related branches found
No related tags found
No related merge requests found
......@@ -258,7 +258,7 @@ public class FloodfillNetworkDatabaseFacade extends KademliaNetworkDatabaseFacad
boolean shouldThrottleBurstLookup(Hash from, TunnelId id) {
// null before startup
return _lookupThrottler == null || _lookupThrottlerBurst.shouldThrottle(from, id);
return _lookupThrottlerBurst == null || _lookupThrottlerBurst.shouldThrottle(from, id);
}
/**
......
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