From 7536a98da171b1c64d9b5f32866b4734119740f5 Mon Sep 17 00:00:00 2001 From: Chris Hennick <4961925+Pr0methean@users.noreply.github.com> Date: Wed, 15 May 2024 16:55:00 -0700 Subject: [PATCH] chore: Box doesn't directly convert to PathBuf, so convert back to String first --- src/read.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/read.rs b/src/read.rs index 75f24839..40fc44e7 100644 --- a/src/read.rs +++ b/src/read.rs @@ -706,7 +706,7 @@ impl ZipArchive { let target = target.into_boxed_str(); let target_is_dir_from_archive = self.shared.files.contains_key(&target) && is_dir(&target); - let target_internal_path: PathBuf = target.into(); + let target_internal_path: PathBuf = target.to_string().into(); let target_path = directory.as_ref().join(target_internal_path.clone()); let target_is_dir = if target_is_dir_from_archive { true