You can config updater feature.

This commit is contained in:
zaxar163 2019-01-03 17:03:31 +04:00
parent b7982e5e48
commit 0b047ad94f
No known key found for this signature in database
GPG key ID: CEE900027AE098E0

View file

@ -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];