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

Skip to content
Snippets Groups Projects
Commit 4dfcf1c1 authored by jrandom's avatar jrandom Committed by zzz
Browse files

updated boundary condition (thanks mule/oOo)

parent 8d7786e9
No related branches found
No related tags found
No related merge requests found
......@@ -120,7 +120,7 @@ public class I2PTunnelHTTPClient extends I2PTunnelClientBase implements Runnable
l.log("Proxy list is emtpy - no outproxy available");
return null;
}
int index = I2PAppContext.getGlobalContext().random().nextInt(proxyList.size()-1);
int index = I2PAppContext.getGlobalContext().random().nextInt(proxyList.size());
return (String)proxyList.get(index);
}
......
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