Use reqwest::header::CONTENT_TYPE

This commit is contained in:
Eelco Dolstra 2024-02-23 18:18:34 +01:00
parent f6c21a9184
commit 0607f5efa4

View file

@ -302,7 +302,7 @@ async fn main_cli() {
if let Some(startup_notification_url) = args.startup_notification_url { if let Some(startup_notification_url) = args.startup_notification_url {
let response = reqwest::Client::new() let response = reqwest::Client::new()
.post(startup_notification_url) .post(startup_notification_url)
.header("Content-Type", "application/json") .header(reqwest::header::CONTENT_TYPE, "application/json")
.body("{}") .body("{}")
.send() .send()
.await; .await;
@ -356,7 +356,7 @@ async fn post_build_hook(out_paths: &str) {
let response = reqwest::Client::new() let response = reqwest::Client::new()
.post(format!("http://{}/api/enqueue-paths", &args.server)) .post(format!("http://{}/api/enqueue-paths", &args.server))
.header("Content-Type", "application/json") .header(reqwest::header::CONTENT_TYPE, "application/json")
.body(serde_json::to_string(&request).unwrap()) .body(serde_json::to_string(&request).unwrap())
.send() .send()
.await; .await;