Fix #14

Merged
phoenix merged 4 commits from fix into main 2026-07-04 20:59:05 -04:00
Showing only changes of commit d61051a997 - Show all commits
+4 -2
View File
@@ -58,8 +58,10 @@ impl SendMsg {
}; };
let url = twilio::api::twilio_url(&self.config.account_sid); let url = twilio::api::twilio_url(&self.config.account_sid);
let headers = let headers = match twilio::api::init_headers(
match twilio::api::init_headers(&self.config.account_sid, &self.config.auth_token) { &self.config.account_sid,
&self.config.auth_token,
) {
Ok(headers) => headers, Ok(headers) => headers,
Err(err) => { Err(err) => {
return Err(std::io::Error::other(err)); return Err(std::io::Error::other(err));