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

Skip to content
Snippets Groups Projects
Commit dd2c5067 authored by sponge's avatar sponge
Browse files

I2PTunnel: fix my own stupid bug in I2PTunnelConnectClient

parent 8ec3e58e
No related branches found
No related tags found
No related merge requests found
......@@ -170,7 +170,7 @@ public class I2PTunnelConnectClient extends I2PTunnelHTTPClientBase implements R
// since we are passing the stream on to I2PTunnelRunner
line = DataHelper.readLine(in);
if(line == null) {
line = ''; // prevent NPE, Is this what we need to do?
line = ""; // prevent NPE, Is this what we need to do?
}
line = line.trim();
if (_log.shouldLog(Log.DEBUG))
......
......@@ -18,7 +18,7 @@ public class RouterVersion {
/** deprecated */
public final static String ID = "Monotone";
public final static String VERSION = CoreVersion.VERSION;
public final static long BUILD = 8;
public final static long BUILD = 9;
/** for example "-test" */
public final static String EXTRA = "";
......
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