From 26301ac34449bd2a464be6f2febee55a50a60fce Mon Sep 17 00:00:00 2001 From: root Date: Tue, 22 Oct 2024 09:33:29 +0200 Subject: [PATCH] more fix --- Cargo.lock | 2 +- src/main.rs | 10 ++++------ 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 52c6bee..6df06e3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,7 +4,7 @@ version = 3 [[package]] name = "BitAuth" -version = "0.1.0" +version = "0.1.1" dependencies = [ "bb8", "bcrypt", diff --git a/src/main.rs b/src/main.rs index 0f12cf3..d4f4967 100644 --- a/src/main.rs +++ b/src/main.rs @@ -258,13 +258,11 @@ async fn handle_connection(req: Request, pool: DBPool, ip: String) -> headers.insert(hyper::header::CONTENT_TYPE, restype); parts.headers = headers; - if logged { - let body = body.replace("{USER_STATUS}", "AUTHORIZED"); + let user_status = match logged { + true => "AUTHORIZED", + _ => "NOT AUTHORIZED" } - else { - let body = body.replace("{USER_STATUS}", "NOT AUTHORIZED"); - } - + let body = body.replace("{USER_STATUS}", user_status); let body = body.replace("{PAGE_TIME}", &format!("{}", time_mcs() - t)); Ok(Response::from_parts(parts, Full::new(Bytes::from(body)))) }