Skip to content

Commit f9d425d

Browse files
committed
Fix filename special character issue
1 parent 838afbb commit f9d425d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ArchiveExplorer/PackageView.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ private void ExtractItems(string path, IEnumerable<IFSNode> nodes, IProgress<str
191191
else
192192
{
193193
p.Report("Extracting " + (i as IFile).Name);
194-
(i as IFile).ExtractTo(Path.Combine(path, (i as IFile).Name));
194+
(i as IFile).ExtractTo(Path.Combine(path, SafeName((i as IFile).Name)));
195195
}
196196
}
197197
}

0 commit comments

Comments
 (0)