chore: fix type mismatch in shallow_copy_file caused by last fix
This commit is contained in:
parent
34b99956c9
commit
35b3a8f257
1 changed files with 2 additions and 2 deletions
|
@ -1455,8 +1455,8 @@ impl<W: Write + Seek> ZipWriter<W> {
|
||||||
self.finish_file()?;
|
self.finish_file()?;
|
||||||
let src_index = self.index_by_name(src_name)?;
|
let src_index = self.index_by_name(src_name)?;
|
||||||
let mut dest_data = self.files[src_index].to_owned();
|
let mut dest_data = self.files[src_index].to_owned();
|
||||||
dest_data.file_name = dest_name.into();
|
dest_data.file_name = dest_name.to_string().into();
|
||||||
dest_data.file_name_raw = dest_name.into();
|
dest_data.file_name_raw = dest_name.into_boxed_bytes();
|
||||||
self.insert_file_data(dest_data)?;
|
self.insert_file_data(dest_data)?;
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue