fix: empty json string

This commit is contained in:
Fu Zi Xiang 2024-01-23 17:15:49 +08:00
parent b10c85c8aa
commit e2bf59cff4
No known key found for this signature in database
2 changed files with 2 additions and 1 deletions

View File

@ -1,4 +1,4 @@
FROM lukemathwalker/cargo-chef:latest-rust-1.74.0 as chef
FROM lukemathwalker/cargo-chef:latest-rust-1.75.0 as chef
WORKDIR /app
RUN apt update && apt install lld clang -y

View File

@ -508,6 +508,7 @@ impl Client {
let resp = self
.http_client_with_auth(Method::POST, &url)
.await?
.json(&())
.send()
.await?;
log_request_id(&resp);