update the changelog

Former-commit-id: 0e2dba7bd5
Former-commit-id: 7f3ad002f5c39d0d19ba531670f78840d5a60f3d
This commit is contained in:
idk
2022-09-06 20:12:31 -04:00
parent adc2690d97
commit 1892e107bc
4 changed files with 21 additions and 12 deletions

View File

@ -503,17 +503,19 @@ public class I2PFirefox extends I2PCommonBrowser {
}
}
if (validateProfileFirstRun(profileDirectory)) {
ProcessBuilder hpb = headlessProcessBuilder(url);
try {
Process hp = hpb.start();
if (isWindows()) {
ProcessBuilder hpb = headlessProcessBuilder(url);
try {
int hev = hp.waitFor();
println("Headless browser run completed, exit: " + hev);
} catch (InterruptedException e) {
Process hp = hpb.start();
try {
int hev = hp.waitFor();
println("Headless browser run completed, exit: " + hev);
} catch (InterruptedException e) {
println(e.toString());
}
} catch (IOException e) {
println(e.toString());
}
} catch (IOException e) {
println(e.toString());
}
}