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

Skip to content
Snippets Groups Projects
Commit 351a1a8d authored by zzz's avatar zzz
Browse files

i2ptunnel: Fix NoSuchElementException processing proxyList

caused by 03-31 checkin
parent 6916cd79
No related branches found
No related tags found
No related merge requests found
......@@ -221,7 +221,7 @@ public abstract class I2PTunnelHTTPClientBase extends I2PTunnelClientBase implem
while (tok.hasMoreTokens()) {
String p = tok.nextToken().trim();
if (p.length() > 0)
_proxyList.add(tok.nextToken().trim());
_proxyList.add(p);
}
}
} else {
......
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