mirror of https://github.com/fafhrd91/actix-web
Fix spelling error
This commit is contained in:
parent
6560a2285f
commit
7870165da2
|
@ -521,7 +521,7 @@ impl Service for FilesService {
|
||||||
Err(e) => return Either::Left(ok(req.error_response(e))),
|
Err(e) => return Either::Left(ok(req.error_response(e))),
|
||||||
};
|
};
|
||||||
|
|
||||||
// full filepath
|
// full file path
|
||||||
let path = match self.directory.join(&real_path.0).canonicalize() {
|
let path = match self.directory.join(&real_path.0).canonicalize() {
|
||||||
Ok(path) => path,
|
Ok(path) => path,
|
||||||
Err(e) => return self.handle_err(e, req),
|
Err(e) => return self.handle_err(e, req),
|
||||||
|
|
Loading…
Reference in New Issue