Skip to content

Commit

Permalink
Replace deprecated call
Browse files Browse the repository at this point in the history
  • Loading branch information
vvilhonen committed Dec 29, 2022
1 parent 754e292 commit c3c2b64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/browser/fetcher.rs
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ impl Fetcher {
for i in 0..archive.len() {
let mut file = archive.by_index(i)?;
let mut out_path = PathBuf::from(extract_path);
out_path.push(file.sanitized_name().as_path());
out_path.push(file.mangled_name().as_path());

let comment = file.comment();
if !comment.is_empty() {
Expand Down

0 comments on commit c3c2b64

Please sign in to comment.