Fix plugin version check bug
This commit is contained in:
@ -131,6 +131,7 @@ public class PluginUpdateChecker extends UpdateHandler {
|
||||
boolean shouldProxy = Boolean.valueOf(_context.getProperty(ConfigUpdateHandler.PROP_SHOULD_PROXY, ConfigUpdateHandler.DEFAULT_SHOULD_PROXY)).booleanValue();
|
||||
String proxyHost = _context.getProperty(ConfigUpdateHandler.PROP_PROXY_HOST, ConfigUpdateHandler.DEFAULT_PROXY_HOST);
|
||||
int proxyPort = _context.getProperty(ConfigUpdateHandler.PROP_PROXY_PORT, ConfigUpdateHandler.DEFAULT_PROXY_PORT_INT);
|
||||
_baos.reset();
|
||||
try {
|
||||
_get = new PartialEepGet(_context, proxyHost, proxyPort, _baos, _xpi2pURL, TrustedUpdate.HEADER_BYTES);
|
||||
_get.addStatusListener(PluginUpdateCheckerRunner.this);
|
||||
|
@ -1,3 +1,12 @@
|
||||
2010-05-02 zzz
|
||||
* ByteCache:
|
||||
- Add a per-cache stat
|
||||
- Limit each cache based on max memory
|
||||
- Disable in UDP MessageReceiver
|
||||
- Add clearAll() method to be called when under
|
||||
severe memory pressure; call from Router
|
||||
* Plugins: Fix version checker bug
|
||||
|
||||
2010-04-27 zzz
|
||||
* i2psnark: Serve downloaded files from the servlet rather
|
||||
than with a file: link
|
||||
|
@ -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 = 1;
|
||||
public final static long BUILD = 2;
|
||||
|
||||
/** for example "-test" */
|
||||
public final static String EXTRA = "";
|
||||
|
Reference in New Issue
Block a user