diff --git a/filed/src/web/pages.rs b/filed/src/web/pages.rs index 93de055..a0faf97 100644 --- a/filed/src/web/pages.rs +++ b/filed/src/web/pages.rs @@ -134,7 +134,7 @@ pub async fn passworded(state: SharedState) -> Result, Rejection> { } pub fn passworded_f(state: SharedState) -> impl Filter + Clone { - warp::path!("password-files") + warp::path!("passworded-files") .and(warp::path::end()) .map(move || state.clone()) .and_then(passworded)