Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
dignifiedquire committed May 16, 2024
1 parent 33485ab commit dca6b0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion iroh-net/src/relay/http/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -900,7 +900,7 @@ impl Actor {
proxy_url.username(),
proxy_url.password().unwrap_or_default()
);
let encoded = URL_SAFE.encode(&to_encode);
let encoded = URL_SAFE.encode(to_encode);
req_builder = req_builder.header("Proxy-Authorization", format!("Basic {}", encoded));
}
let req = req_builder.body(Empty::<Bytes>::new())?;
Expand Down

0 comments on commit dca6b0b

Please sign in to comment.