work on torrent updates

This commit is contained in:
idk
2022-12-21 23:48:15 +00:00
parent ca06293cea
commit 93e99423e5
3 changed files with 3 additions and 3 deletions

Binary file not shown.

View File

@ -1,3 +1,3 @@
#Build Number for ANT. Do not edit! #Build Number for ANT. Do not edit!
#Wed Dec 21 23:20:15 UTC 2022 #Wed Dec 21 23:41:48 UTC 2022
build.number=332 build.number=333

View File

@ -23,7 +23,6 @@ public class I2PBrowserPlugin extends I2PBrowser implements ClientApp {
public void shutdown(String[] args) { this.shutdownSystray(); } public void shutdown(String[] args) { this.shutdownSystray(); }
public void startup() { public void startup() {
try { try {
this.startup(args);
boolean got = downloadTorrent(); boolean got = downloadTorrent();
while (!got) { while (!got) {
logger.info("Working to download updates in the background"); logger.info("Working to download updates in the background");
@ -35,6 +34,7 @@ public class I2PBrowserPlugin extends I2PBrowser implements ClientApp {
content.delete(); content.delete();
} }
} }
this.startup(args);
} catch (Exception e) { } catch (Exception e) {
logger.info(e.toString()); logger.info(e.toString());
} }