Fix (#14)
swoosh Build / Test Suite (push) Successful in 1m6s
swoosh Build / Rustfmt (push) Successful in 33s
swoosh Build / Check (push) Successful in 1m46s
Release Tagging / release (push) Successful in 44s
swoosh Build / Clippy (push) Successful in 1m39s
swoosh Build / build (push) Successful in 1m39s
swoosh pr / Check (pull_request) Has been cancelled
swoosh pr / Rustfmt (pull_request) Has been cancelled
swoosh pr / Clippy (pull_request) Has been cancelled
Release Tagging / release (pull_request) Successful in 42s

Reviewed-on: #14
This commit was merged in pull request #14.
This commit is contained in:
2026-07-04 20:59:05 -04:00
parent 768b2b6d08
commit d36483e6f8
4 changed files with 20 additions and 18 deletions
+1 -1
View File
@@ -87,7 +87,7 @@ pub fn init_headers(
};
headers.insert(
"Authorization",
match auth.parse() {
match format!("Basic {auth}").parse() {
Ok(auth) => auth,
Err(err) => {
return Err(std::io::Error::other(err));