1
0
mirror of https://github.com/actix/actix-extras.git synced 2024-11-24 16:02:59 +01:00

fix directory entry path

This commit is contained in:
belltoy 2018-01-13 08:37:27 +00:00
parent a9c71b2894
commit 781282897a

View File

@ -138,7 +138,7 @@ impl Responder for Directory {
for entry in self.path.read_dir()? { for entry in self.path.read_dir()? {
if self.can_list(&entry) { if self.can_list(&entry) {
let entry = entry.unwrap(); 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), Ok(p) => base.join(p),
Err(_) => continue Err(_) => continue
}; };