We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c42a33f commit e8b5481Copy full SHA for e8b5481
crates/handlers/src/graphql/mod.rs
@@ -341,8 +341,7 @@ pub async fn post(
341
342
let request = async_graphql::http::receive_body(
343
content_type,
344
- body.map_err(|e| std::io::Error::new(std::io::ErrorKind::Other, e))
345
- .into_async_read(),
+ body.map_err(std::io::Error::other).into_async_read(),
346
MultipartOptions::default(),
347
)
348
.await?
0 commit comments