Added system property to skip update check

This commit is contained in:
RaphiMC 2023-01-30 16:16:10 +01:00
parent f857ae2349
commit a6e071cc07

View File

@ -108,7 +108,9 @@ public class ViaProxy {
loaderThread.start();
accountRefreshThread.start();
SwingUtilities.invokeLater(() -> ui = new ViaProxyUI());
updateCheckThread.start();
if (System.getProperty("skipUpdateCheck") == null) {
updateCheckThread.start();
}
loaderThread.join();
accountRefreshThread.join();
while (ui == null) {
@ -127,7 +129,9 @@ public class ViaProxy {
System.exit(0);
}
updateCheckThread.start();
if (System.getProperty("skipUpdateCheck") == null) {
updateCheckThread.start();
}
loaderThread.start();
loaderThread.join();
Logger.LOGGER.info("ViaProxy started successfully!");