fix: _expand_zips — inner_name → name (ZIP was never expanded)
Deploy contracts-flask / validate (push) Successful in 0s

This commit is contained in:
2026-06-29 15:16:47 +04:00
parent 709603c372
commit b03ca0359a
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -265,7 +265,7 @@ class TwoPassObfuscator:
if not name or name.endswith("/") or ".." in name or "/" in name or "\\" in name:
continue
inner_data = zf.read(info)
result.append((inner_name, inner_data, ""))
result.append((name, inner_data, ""))
except Exception as e:
log.warning("Failed to expand ZIP %s: %s", fname, e)
result.append((fname, content, ctype))