chore: Another bug fix

This commit is contained in:
Chris Hennick 2024-05-15 15:37:31 -07:00
parent 47a07fb964
commit 2a67534fcb
No known key found for this signature in database
GPG key ID: DA47AABA4961C509

View file

@ -702,9 +702,7 @@ impl<R: Read + Seek> ZipArchive<R> {
{ {
let target_is_dir = if let Ok(meta) = std::fs::metadata(target_path) { let target_is_dir = if let Ok(meta) = std::fs::metadata(target_path) {
meta.is_dir() meta.is_dir()
} else if let Some(target_in_archive) = } else if let Some(target_in_archive) = self.index_for_name(&target) {
self.index_for_path(path_to_string(target))
{
self.by_index_raw(target_in_archive)?.is_dir() self.by_index_raw(target_in_archive)?.is_dir()
} else { } else {
false false