Cargo format

This commit is contained in:
Gregory Schier
2024-06-08 20:28:45 -07:00
parent ef1c5da027
commit 4232bdd298
3 changed files with 6 additions and 7 deletions

View File

@@ -476,10 +476,7 @@ pub async fn send_http_request(
Ok(response)
}
Err(e) => {
warn!("FAILED TO SEND REQUEST {:?}", e);
response_err(response, e.to_string(), window).await
},
Err(e) => response_err(response, e.to_string(), window).await,
}
}