diff --git a/src/fs.rs b/src/fs.rs index c49ca854633..d7aa4d17474 100644 --- a/src/fs.rs +++ b/src/fs.rs @@ -138,7 +138,7 @@ impl Responder for Directory { for entry in self.path.read_dir()? { if self.can_list(&entry) { let entry = entry.unwrap(); - let p = match entry.path().strip_prefix(&self.base) { + let p = match entry.path().strip_prefix(&self.path) { Ok(p) => base.join(p), Err(_) => continue };