fix: try without chunk headers

This commit is contained in:
Zack Fu Zi Xiang 2024-06-20 15:05:06 +08:00
parent 44592e1730
commit ab5c7bb830
No known key found for this signature in database
1 changed files with 0 additions and 2 deletions

View File

@ -267,8 +267,6 @@ impl Client {
let resp = self
.http_client_with_auth(Method::POST, &url)
.await?
.header("Content-Type", "octet-stream")
.header("Transfer-Encoding", "chunked")
.body(Body::wrap_stream(publish_collab_stream))
.send()
.await?;