Skip to content

Commit

Permalink
token -> Bearer for auth
Browse files Browse the repository at this point in the history
  • Loading branch information
jesseditson committed Feb 17, 2025
1 parent a735420 commit 193627e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/binary/command/upload.rs
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ impl BinaryCommand for Command {
let mut headers = HeaderMap::new();
headers.append(
AUTHORIZATION,
format!("token {}", access_token).parse().unwrap(),
format!("Bearer {}", access_token).parse().unwrap(),
);
let client = reqwest::blocking::Client::builder()
.default_headers(headers)
Expand Down

0 comments on commit 193627e

Please # to comment.