mirror of
https://github.com/lxsang/antos-frontend.git
synced 2024-11-16 01:38:21 +01:00
fix: extractZip bug introduced by last commit
All checks were successful
gitea-sync/antos/pipeline/head This commit looks good
All checks were successful
gitea-sync/antos/pipeline/head This commit looks good
This commit is contained in:
parent
492f85789c
commit
0b5610ed76
@ -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