work on torrent updates

This commit is contained in:
idk
2022-12-22 04:14:30 +00:00
parent 854d38288a
commit 01b8a41fdb
4 changed files with 7 additions and 3 deletions

Binary file not shown.

View File

@ -1,3 +1,3 @@
#Build Number for ANT. Do not edit!
#Thu Dec 22 04:04:37 UTC 2022
build.number=355
#Thu Dec 22 04:04:48 UTC 2022
build.number=356

View File

@ -329,6 +329,7 @@ public class I2PBrowser extends I2PCommonBrowser {
logger.info("Systray is already running in another process");
return true;
}
logger.info("Systray does not appear to be running");
return false;
}
private SystemTray initTray() {

View File

@ -126,8 +126,11 @@ public class I2PBrowserPlugin extends I2PBrowser implements ClientApp {
}
public ClientAppState getState() {
if (systrayRunningExternally()) {
logger.info("Firefox profile manager systray is running");
return ClientAppState.RUNNING;
}
return ClientAppState.STOPPED;
logger
.info("Fireox profile manager systray is stopped") return ClientAppState
.STOPPED;
}
}