mirror of
https://github.com/GravitLauncher/Launcher
synced 2025-04-03 23:11:57 +03:00
[FIX] Проверки безопасности в loadModuleFull. + [FIX] finishModules в launchServer.
This commit is contained in:
parent
2d06628a74
commit
470164a80c
3 changed files with 7 additions and 0 deletions
|
@ -585,6 +585,7 @@ public void run() {
|
|||
JVMHelper.RUNTIME.addShutdownHook(CommonHelper.newThread(null, false, this::close));
|
||||
CommonHelper.newThread("Command Thread", true, commandHandler).start();
|
||||
rebindServerSocket();
|
||||
modulesManager.finishModules();
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -16,4 +16,9 @@ public ClientModuleManager(LauncherEngine engine) {
|
|||
public void loadModule(URL jarpath, String classname) {
|
||||
throw new SecurityException("Custom JAR's load not allowed here");
|
||||
}
|
||||
|
||||
@Override
|
||||
public void loadModuleFull(URL jarpath) {
|
||||
throw new SecurityException("Custom JAR's load not allowed here");
|
||||
}
|
||||
}
|
||||
|
|
|
@ -86,6 +86,7 @@ public void loadModuleFull(URL jarpath) throws ClassNotFoundException, IllegalAc
|
|||
module.preInit(context);
|
||||
module.init(context);
|
||||
module.postInit(context);
|
||||
module.finish(context);
|
||||
LogHelper.info("Module %s version: %s loaded", module.getName(), module.getVersion());
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue