Skip to content

Commit

Permalink
fix: cargo clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
dynamite-bud committed Nov 16, 2023
1 parent a7dddb0 commit b698015
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/cli/src/commands/package/download.rs
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ impl PackageDownload {

let client = reqwest::blocking::Client::new();
let mut b = client
.get(&download_url)
.get(download_url)
.header(http::header::ACCEPT, "application/webc");
if let Some(token) = token {
b = b.header(http::header::AUTHORIZATION, format!("Bearer {token}"));
Expand Down

0 comments on commit b698015

Please sign in to comment.