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 641d586 commit b70cb01Copy full SHA for b70cb01
crates/dips/src/ipfs.rs
@@ -47,7 +47,7 @@ impl IpfsFetcher for IpfsClient {
47
async fn fetch(&self, file: &str) -> Result<GraphManifest, DipsError> {
48
let content = self
49
.client
50
- .get(file.as_ref())
+ .cat(file.as_ref())
51
.map_ok(|chunk| chunk.to_vec())
52
.try_concat()
53
.await
0 commit comments