From 22e8fdbf58901b59ad9d00a7a8882eaec2ddb104 Mon Sep 17 00:00:00 2001 From: Chris Hennick <4961925+Pr0methean@users.noreply.github.com> Date: Fri, 3 May 2024 14:06:48 -0700 Subject: [PATCH] chore: Bug fix --- src/spec.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/spec.rs b/src/spec.rs index 7ed4f6b4..c3c4d422 100644 --- a/src/spec.rs +++ b/src/spec.rs @@ -218,7 +218,7 @@ impl Zip64CentralDirectoryEnd { /// Converts a path to the ZIP format (forward-slash-delimited and normalized). pub(crate) fn path_to_string>(path: T) -> String { let original = path.as_ref().to_str(); - let mut recreate = original.is_some(); + let mut recreate = original.is_none(); let mut normalized_components = Vec::new(); // Empty element ensures the path has a leading slash, with no extra allocation after the join @@ -234,7 +234,7 @@ pub(crate) fn path_to_string>(path: T) -> String { normalized_components.push(os_str.to_string_lossy()); } } - + } Component::ParentDir => { recreate = true; @@ -248,7 +248,7 @@ pub(crate) fn path_to_string>(path: T) -> String { } } if recreate { - normalized_components.join("/") + normalized_components.join("/") } else { drop(normalized_components); let original = original.unwrap();