From 5cd448802f864d69b97a514942dae3c7ef4ee3f7 Mon Sep 17 00:00:00 2001 From: Chris Hennick <4961925+Pr0methean@users.noreply.github.com> Date: Fri, 3 May 2024 14:31:32 -0700 Subject: [PATCH] chore: Bug fix: must recreate if . or .. is a path element --- src/spec.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/spec.rs b/src/spec.rs index a24da82f..b2f9f221 100644 --- a/src/spec.rs +++ b/src/spec.rs @@ -219,7 +219,8 @@ impl Zip64CentralDirectoryEnd { pub(crate) fn path_to_string>(path: T) -> String { let mut maybe_original = None; if let Some(original) = path.as_ref().to_str() { - if MAIN_SEPARATOR == '/' || !original[1..].contains(MAIN_SEPARATOR) { + if (MAIN_SEPARATOR == '/' || !original.contains(MAIN_SEPARATOR)) + && !original.ends_with('.') && !original.contains("./") { if original.starts_with(MAIN_SEPARATOR) { maybe_original = Some(&original[1..]); } else {