mirror of
https://github.com/GravitLauncher/Launcher
synced 2025-01-09 00:59:44 +03:00
[FIX] Duplicate META-INF
This commit is contained in:
parent
dda863db9d
commit
f8fbe8e425
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@ public void pushJarFile(ZipInputStream input) throws IOException {
|
|||
public void pushJarFile(ZipInputStream input, Set<String> blacklist) throws IOException {
|
||||
ZipEntry e = input.getNextEntry();
|
||||
while (e != null) {
|
||||
if (blacklist.contains(e.getName())) {
|
||||
if (fileList.contains(e.getName()) || blacklist.contains(e.getName())) {
|
||||
e = input.getNextEntry();
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue