We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c0212c commit 6fc30bfCopy full SHA for 6fc30bf
src-tauri/src/lib/mod.rs
@@ -712,10 +712,8 @@ pub fn decompress_archive(
712
archive_path: &str,
713
destination_path: &str,
714
) -> Result<(), DecompressionError> {
715
- let archive_path_long = make_long_path_compatible(archive_path);
716
- let archive_path = Path::new(&archive_path_long);
717
- let destination_path_long = make_long_path_compatible(destination_path);
718
- let destination_path = Path::new(&destination_path_long);
+ let archive_path = Path::new(&archive_path);
+ let destination_path = Path::new(&destination_path);
719
720
if !destination_path.exists() {
721
std::fs::create_dir_all(destination_path)?;
0 commit comments