From 9fa66899aad30d257e6866b0a248d04a95176bd5 Mon Sep 17 00:00:00 2001 From: root Date: Tue, 22 Oct 2024 09:53:56 +0200 Subject: [PATCH] remove error --- src/url/user.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/url/user.rs b/src/url/user.rs index 0d080b5..25e67e0 100644 --- a/src/url/user.rs +++ b/src/url/user.rs @@ -26,8 +26,7 @@ pub async fn user(req: Request, pool: DBPool) -> Res<(String, StatusCo body = format!("{}", uuid); } else { -// body = "Not fond :(".to_owned(); - body = format!("{}", user.err().unwrap()); + body = "Not fond :(".to_owned(); } let restype: HeaderValue = "text/html".parse().unwrap();