This commit is contained in:
2026-07-04 20:51:52 -04:00
parent 768b2b6d08
commit 5943aa178b
2 changed files with 7 additions and 7 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));