Bump again

This commit is contained in:
idk
2022-09-04 23:12:52 -04:00
parent c3934ab4e4
commit 7caf03d6e4
2 changed files with 4 additions and 4 deletions

View File

@@ -2,8 +2,8 @@
JNA_VERSION=5.11.0
export JNA_VERSION=5.11.0
I2PFIREFOX_VERSION=0.0.23
export I2PFIREFOX_VERSION=0.0.23
I2PFIREFOX_VERSION=0.0.24
export I2PFIREFOX_VERSION=0.0.24
#Comment this out to build from an alternate branch or
# the tip of the master branch.
VERSIONMAJOR=1

View File

@@ -144,8 +144,7 @@ public class WinLauncher {
}
private static boolean i2pIsRunning() {
for (int i = 0; i > 30; i++) {
sleep(2000);
for (int i = 0; i < 30; i++) {
// check if there's something listening on port 7657(Router Console)
if (!isAvailable(7657)) {
return true;
@@ -167,6 +166,7 @@ public class WinLauncher {
return true;
}
}
sleep(2000);
}
return false;
}