mirror of
https://github.com/GravitLauncher/Launcher
synced 2024-12-22 16:41:46 +03:00
[FIX] Исправление загрузки модуля если внутри папки с модулем имеется мусор
This commit is contained in:
parent
f0eeeaad10
commit
4d9fb827c3
1 changed files with 2 additions and 1 deletions
|
@ -36,7 +36,8 @@ private ModulesVisitor() {
|
|||
|
||||
@Override
|
||||
public FileVisitResult visitFile(Path file, BasicFileAttributes attrs) throws IOException {
|
||||
loadModule(file);
|
||||
if (file.toFile().getName().endsWith(".jar"))
|
||||
loadModule(file);
|
||||
return super.visitFile(file, attrs);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue