work on torrent updates

This commit is contained in:
idk
2022-12-22 04:53:48 +00:00
parent 6ea0ab8973
commit e019560638
2 changed files with 5 additions and 4 deletions

View File

@ -1,3 +1,3 @@
#Build Number for ANT. Do not edit!
#Thu Dec 22 04:50:54 UTC 2022
build.number=366
#Thu Dec 22 04:53:08 UTC 2022
build.number=367

View File

@ -85,7 +85,7 @@ public class I2PBrowserPlugin extends I2PBrowser implements ClientApp {
public void startup() {
cam.notify(this, ClientAppState.STARTING,
"Starting up profile manager systray", null);
final IOException error = null;
final IOException error;
Runnable r = new Runnable() {
public void run() {
try {
@ -98,7 +98,8 @@ public class I2PBrowserPlugin extends I2PBrowser implements ClientApp {
new Thread(r).start();
try {
this.startup(args);
logger.warning(error.toString());
if (error != null)
logger.warning(error.toString());
cam.notify(this, ClientAppState.RUNNING,
"Starting up profile manager systray", null);
} catch (Exception e) {