diff --git a/src/forward.rs b/src/forward.rs index 229ac17..caca935 100644 --- a/src/forward.rs +++ b/src/forward.rs @@ -59,7 +59,7 @@ pub async fn forward( for (header_name, header_value) in res .headers() .iter() - .filter(|(h, _)| *h != "connection" && *h != "content-encoding" && *h != "authorization") + .filter(|(h, _)| *h != "connection" && *h != "content-encoding") { client_resp.header(header_name.clone(), header_value.clone()); }