mirror of
https://github.com/lxsang/antos-frontend.git
synced 2024-12-26 01:18:21 +01:00
fix: extractZip bug introduced by last commit
This commit is contained in:
parent
b30a2bb44c
commit
82f35f791e
@ -2273,7 +2273,7 @@ namespace OS {
|
||||
const files = [];
|
||||
for (const _name in zip.files) {
|
||||
const name = _name.trimFromRight("/");
|
||||
const file = zip.files[name];
|
||||
const file = zip.files[_name];
|
||||
if (file.dir) {
|
||||
dirs.add(to + "/" + name);
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user