mirror of
https://github.com/GravitLauncher/Launcher
synced 2025-04-03 23:11:57 +03:00
You can config updater feature.
This commit is contained in:
parent
b7982e5e48
commit
0b047ad94f
1 changed files with 2 additions and 2 deletions
|
@ -25,10 +25,10 @@ public interface Callback {
|
||||||
void post(LaunchServer lsrv);
|
void post(LaunchServer lsrv);
|
||||||
}
|
}
|
||||||
|
|
||||||
UpdateManager(LaunchServer lsrv) throws MalformedURLException {
|
UpdateManager(LaunchServer lsrv) {
|
||||||
this.srv = lsrv;
|
this.srv = lsrv;
|
||||||
this.cl = new FCL(srv);
|
this.cl = new FCL(srv);
|
||||||
t = new Timer("Updater", true);
|
t = srv.config.criticalCallbacks ? new Timer("Updater", true) : null;
|
||||||
if (srv.config.criticalCallbacks) t.schedule(this, 60000, 60000);
|
if (srv.config.criticalCallbacks) t.schedule(this, 60000, 60000);
|
||||||
String[] updU = lsrv.config.updateMirror.split(":");
|
String[] updU = lsrv.config.updateMirror.split(":");
|
||||||
updUH = updU[0];
|
updUH = updU[0];
|
||||||
|
|
Loading…
Reference in a new issue