work on torrent updates
This commit is contained in:
@ -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
|
||||
|
@ -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) {
|
||||
|
Reference in New Issue
Block a user