I guess it should always work now I think?

Former-commit-id: 5886cf69a2
Former-commit-id: 675445dafaaa06dbe425c6a3f0f3bd4de134cb18
This commit is contained in:
idk
2022-08-27 23:19:16 -04:00
parent 100fba31d0
commit 300b16bce3
4 changed files with 50 additions and 6 deletions

View File

@ -23,6 +23,7 @@ import java.util.ArrayList;
public class I2PBrowser {
private final I2PFirefox i2pFirefox = new I2PFirefox();
private final I2PChromium i2pChromium = new I2PChromium();
private final I2PGenericUnsafeBrowser i2pGeneral = new I2PGenericUnsafeBrowser();
public boolean firefox = false;
public boolean chromium = false;
public boolean chromiumFirst = false;
@ -35,6 +36,10 @@ public class I2PBrowser {
System.out.println("I2PChromium");
i2pChromium.launch(privateWindow, url);
}
private void launchGeneric(boolean privateWindow, String[] url) {
System.out.println("I2PChromium");
i2pGeneral.launch(privateWindow, url);
}
/**
* Construct an I2PBrowser class which automatically determines which browser to use.
@ -92,6 +97,8 @@ public class I2PBrowser {
this.launchFirefox(privateWindow, url);
} else if (this.hasChromium()) {
this.launchChromium(privateWindow, url);
}else{
this.launchGeneric(privateWindow, url);
}
return;
}
@ -100,6 +107,8 @@ public class I2PBrowser {
this.launchChromium(privateWindow, url);
}else if (firefox) {
this.launchFirefox(privateWindow, url);
}else{
this.launchGeneric(privateWindow, url);
}
return;
}
@ -107,6 +116,8 @@ public class I2PBrowser {
this.launchFirefox(privateWindow, url);
}else if (chromium) {
this.launchChromium(privateWindow, url);
}else{
this.launchGeneric(privateWindow, url);
}
return;
}