don't return after private browsing check

This commit is contained in:
idk
2022-08-21 00:49:29 -04:00
parent e7e40a96ba
commit 54be1d3acd

View File

@ -52,9 +52,10 @@ public class WinLauncher {
}
boolean privateBrowsing = false;
if (args != null && args.length > 0) {
logger.info("checking for private browsing");
if (args[0].equals("-private")) {
privateBrowsing = true;
return;
logger.info("private browsing is true, profile will be discarded at end of session");
}
}