setNotRunning before launching the router, counter-intuitively but this is for determining whether we should launch the browser only. The other checks will still work for determining if a router is there. It only needs to be there for the first 21 or so seconds.

This commit is contained in:
idk
2022-09-05 02:00:54 -04:00
parent 3749f49641
commit ef203ba935

View File

@ -180,7 +180,11 @@ public class WinLauncher {
File home = selectHome();
File running = new File(home, "running");
if (!running.exists()){
running.createNewFile();
try{
running.createNewFile();
}catch(IOException e){
logger.info(e.toString());
}
}
}