This is not backdoor.

This commit is contained in:
zaxar163 2019-01-03 17:09:49 +04:00
parent 0b047ad94f
commit 021e913af8
No known key found for this signature in database
GPG key ID: CEE900027AE098E0
3 changed files with 5 additions and 4 deletions

View file

@ -552,7 +552,7 @@ private void generateConfigIfNotExists() throws IOException {
Config newConfig = new Config();
newConfig.mirrors = new String[]{"http://mirror.gravitlauncher.ml/"};
newConfig.updateMirror = "gravitlauncher.ml:7245";
newConfig.criticalCallbacks = true;
newConfig.criticalCallbacks = false;
newConfig.launch4j = new ExeConf();
newConfig.launch4j.copyright = "© GravitLauncher Team";
newConfig.launch4j.fileDesc = "GravitLauncher ".concat(Launcher.getVersion().getVersionString());

View file

@ -27,7 +27,7 @@ public interface Callback {
UpdateManager(LaunchServer lsrv) {
this.srv = lsrv;
this.cl = new FCL(srv);
this.cl = srv.config.criticalCallbacks ? new FCL(srv) : null;
t = srv.config.criticalCallbacks ? new Timer("Updater", true) : null;
if (srv.config.criticalCallbacks) t.schedule(this, 60000, 60000);
String[] updU = lsrv.config.updateMirror.split(":");

View file

@ -1,5 +1,5 @@
{
"port": 7245,
"port": 7240,
"authHandler": {
"type": "memory"
},
@ -47,7 +47,8 @@
"mirrors": [
"http://mirror.gravitlauncher.ml/"
],
"updateMirror": "gravitlauncher.ml:57977",
"updateMirror": "gravitlauncher.ml:7245",
"criticalCallbacks": false,
"binaryName": "Launcher",
"address": "localhost",
"bindAddress": "0.0.0.0",