From 3258b05bc14a52b04dc18918590633e1098c899a Mon Sep 17 00:00:00 2001 From: JesusPerez Date: Sat, 11 Sep 2021 19:29:40 +0100 Subject: [PATCH] chore: syntax fix --- app_auth_handlers/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app_auth_handlers/src/lib.rs b/app_auth_handlers/src/lib.rs index c810c58..65a535c 100644 --- a/app_auth_handlers/src/lib.rs +++ b/app_auth_handlers/src/lib.rs @@ -176,7 +176,7 @@ pub async fn logout_handler( //-> WebResult { let reqenv = ReqTasks::new(db.app, db.auth, header, method, "", "logout_header", "auth",); // let allow_origin = reqenv.config().allow_origin; - &reqenv.auth_store.sessions.write().await.remove(&user_ctx.token); + reqenv.auth_store.sessions.write().await.remove(&user_ctx.token); Ok(warp::http::Response::builder() .status(StatusCode::OK) //.header("Access-Control-Allow-Origin",&allow_origin)