make i2pIsRunning behavior consistent for both tests

This commit is contained in:
idk
2022-05-20 18:46:34 -04:00
parent 23ae110698
commit a7c5151b56

View File

@@ -98,7 +98,7 @@ public class WinLauncher {
long diff = System.currentTimeMillis() - ping.lastModified();
if (diff < 2 * 60 * 1000) {
logger.info("router.ping exists and is less than 2 minutes old, I2P appears to be running already.");
System.exit(0);
return true;
}
}
try {