* i2ptunnel HTTP Proxy: Fix default enable for outproxy plugin

This commit is contained in:
zzz
2014-01-27 13:32:24 +00:00
parent 0c326f989e
commit 6b16907e40
3 changed files with 5 additions and 2 deletions

View File

@@ -701,7 +701,7 @@ public class I2PTunnelHTTPClient extends I2PTunnelHTTPClientBase implements Runn
s.close();
return;
} else if(host.contains(".") || host.startsWith("[")) {
if (Boolean.parseBoolean(getTunnel().getClientOptions().getProperty(PROP_USE_OUTPROXY_PLUGIN))) {
if (Boolean.parseBoolean(getTunnel().getClientOptions().getProperty(PROP_USE_OUTPROXY_PLUGIN, "true"))) {
ClientAppManager mgr = _context.clientAppManager();
if (mgr != null) {
ClientApp op = mgr.getRegisteredApp(Outproxy.NAME);

View File

@@ -1,3 +1,6 @@
2014-01-27 zzz
* i2ptunnel HTTP Proxy: Fix default enable for outproxy plugin
2014-01-25 zzz
* i2psnark: Lower threshold for auto-stop
* i2ptunnel HTTP Proxy:

View File

@@ -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 = 3;
public final static long BUILD = 4;
/** for example "-test" */
public final static String EXTRA = "";