summaryrefslogtreecommitdiffstats
path: root/ipfs-api/src/lib.rs
diff options
context:
space:
mode:
authorFerris Tseng <ferris@navapbc.com>2020-05-16 13:17:42 -0400
committerFerris Tseng <ferris@navapbc.com>2020-05-16 13:17:42 -0400
commit473f022409b9abdcec0215994de6962d01cfae84 (patch)
treeb263877b2c305c174b26fc7e1d64edeb24ec34d4 /ipfs-api/src/lib.rs
parent8caaf310b81ddf609c60337be4d20ac1b8bd8102 (diff)
fix issue where actix was not sending a body
Diffstat (limited to 'ipfs-api/src/lib.rs')
-rw-r--r--ipfs-api/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipfs-api/src/lib.rs b/ipfs-api/src/lib.rs
index 716ba23..dc02e96 100644
--- a/ipfs-api/src/lib.rs
+++ b/ipfs-api/src/lib.rs
@@ -171,7 +171,7 @@ use hyper::{self, client::HttpConnector};
use hyper_tls::HttpsConnector;
#[cfg(feature = "actix")]
-pub(crate) type Request = awc::ClientRequest;
+pub(crate) type Request = awc::SendClientRequest;
#[cfg(feature = "hyper")]
pub(crate) type Request = http::Request<hyper::Body>;