mirror of
https://github.com/Anuken/Mindustry.git
synced 2025-07-13 17:27:35 +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;
|
||||
zos.putNextEntry(new ZipEntry(path));
|
||||
if(!add.isDirectory()){
|
||||
Streams.copy(add.read(), zos);
|
||||
try(var stream = add.read()){
|
||||
Streams.copy(stream, zos);
|
||||
}
|
||||
}
|
||||
zos.closeEntry();
|
||||
}
|
||||
|
Reference in New Issue
Block a user