mirror of
https://github.com/GravitLauncher/Launcher
synced 2025-04-02 22:41:56 +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);
|
||||
}
|
||||
|
||||
UpdateManager(LaunchServer lsrv) throws MalformedURLException {
|
||||
UpdateManager(LaunchServer lsrv) {
|
||||
this.srv = lsrv;
|
||||
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);
|
||||
String[] updU = lsrv.config.updateMirror.split(":");
|
||||
updUH = updU[0];
|
||||
|
|
Loading…
Reference in a new issue