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 842f955 commit df29c52Copy full SHA for df29c52
src/impls/zip.rs
@@ -76,7 +76,7 @@ unsafe impl Send for SeekableZipFile {}
76
impl FileSystem for ZipFS {
77
fn read_dir(&self, path: &str) -> VfsResult<Box<dyn Iterator<Item = String> + Send>> {
78
let mut resolved_path = Self::resolve_path(path);
79
- if resolved_path.is_empty() {
+ if !resolved_path.is_empty() {
80
resolved_path += "/";
81
}
82
let mut archive = self.open_archive()?;
0 commit comments