mirror of
https://github.com/Anuken/Mindustry.git
synced 2025-07-12 16:57:52 +07:00
Fixed #8827
This commit is contained in:
@ -524,7 +524,9 @@ public class SettingsMenuDialog extends BaseDialog{
|
|||||||
path = path.startsWith("/") ? path.substring(1) : path;
|
path = path.startsWith("/") ? path.substring(1) : path;
|
||||||
zos.putNextEntry(new ZipEntry(path));
|
zos.putNextEntry(new ZipEntry(path));
|
||||||
if(!add.isDirectory()){
|
if(!add.isDirectory()){
|
||||||
Streams.copy(add.read(), zos);
|
try(var stream = add.read()){
|
||||||
|
Streams.copy(stream, zos);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
zos.closeEntry();
|
zos.closeEntry();
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user