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

Skip to content
Snippets Groups Projects
Commit f9d3b157 authored by polecat's avatar polecat Committed by zzz
Browse files

Emergency patch to I2PTunnelIRCClient, not sure why zero length strings are...

Emergency patch to I2PTunnelIRCClient, not sure why zero length strings are getting passed to it.  Oh, and my first patch\!
parent 12775c41
No related branches found
No related tags found
No related merge requests found
...@@ -340,6 +340,10 @@ public class I2PTunnelIRCClient extends I2PTunnelClientBase implements Runnable ...@@ -340,6 +340,10 @@ public class I2PTunnelIRCClient extends I2PTunnelClientBase implements Runnable
"HELPME", "HELPME",
"RULES" "RULES"
}; };
if(field[0].length()==0)
return null; // W T F?
if(field[0].charAt(0)==':') if(field[0].charAt(0)==':')
return null; // wtf return null; // wtf
......
#!/bin/sh #!/bin/sh
java -cp lib/i2p.jar net.i2p.util.EepGet $* export I2P=~i2p/i2p
java -cp $I2P/lib/i2p.jar net.i2p.util.EepGet $*
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