fix missing semicolon

Former-commit-id: 6234ffdff1
Former-commit-id: 4402259ff2e6e9b2f86e952c3a848b14a426d022
This commit is contained in:
idk
2022-09-04 21:13:40 -04:00
parent 2a1af1e1a4
commit 98f531e892
5 changed files with 6 additions and 6 deletions

View File

@ -367,14 +367,14 @@ public class I2PFirefox extends I2PCommonBrowser {
int arglength = 0;
if (args != null)
arglength = args.length;
String[] newArgs = new String[arglength + 3];
String[] newArgs = new String[arglength + 4];
newArgs[0] = firefox;
newArgs[1] = "--profile";
newArgs[2] = I2PFirefoxProfileBuilder.profileDirectory();
if (args != null) {
if (arglength > 0) {
for (int i = 0; i < arglength; i++) {
newArgs[i + 3] = args[i];
newArgs[i + 4] = args[i];
}
}
}