update the changelog
Former-commit-id: 0e2dba7bd5
Former-commit-id: 7f3ad002f5c39d0d19ba531670f78840d5a60f3d
This commit is contained in:
@ -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());
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user