chore: Bug fix: variable name change

This commit is contained in:
Chris Hennick 2024-05-15 15:57:54 -07:00
parent 9d11f4cf68
commit aca750d616
No known key found for this signature in database
GPG key ID: DA47AABA4961C509

View file

@ -703,7 +703,7 @@ impl<R: Read + Seek> ZipArchive<R> {
let target_internal_path: PathBuf = target.into(); let target_internal_path: PathBuf = target.into();
let target_path = directory.as_ref().join(target_internal_path.clone()); let target_path = directory.as_ref().join(target_internal_path.clone());
let target_is_dir = let target_is_dir =
if let Ok(meta) = std::fs::metadata(target_absolute_path) { 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_path(&target_internal_path) self.index_for_path(&target_internal_path)