From f53dc248c97dde88ff28c32dd0e9531b71995b70 Mon Sep 17 00:00:00 2001 From: blek Date: Sat, 21 Oct 2023 12:26:53 +1000 Subject: [PATCH] fix dead link --- filed/src/web/pages.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)