chore: Bug fix
This commit is contained in:
parent
753eedb3a7
commit
22e8fdbf58
1 changed files with 3 additions and 3 deletions
|
@ -218,7 +218,7 @@ impl Zip64CentralDirectoryEnd {
|
||||||
/// Converts a path to the ZIP format (forward-slash-delimited and normalized).
|
/// Converts a path to the ZIP format (forward-slash-delimited and normalized).
|
||||||
pub(crate) fn path_to_string<T: AsRef<Path>>(path: T) -> String {
|
pub(crate) fn path_to_string<T: AsRef<Path>>(path: T) -> String {
|
||||||
let original = path.as_ref().to_str();
|
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();
|
let mut normalized_components = Vec::new();
|
||||||
|
|
||||||
// Empty element ensures the path has a leading slash, with no extra allocation after the join
|
// Empty element ensures the path has a leading slash, with no extra allocation after the join
|
||||||
|
|
Loading…
Add table
Reference in a new issue