Skip to content

Commit

Permalink
chore: update wasm32
Browse files Browse the repository at this point in the history
  • Loading branch information
dariusc93 committed Sep 6, 2024
1 parent e55c437 commit 538c834
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/unixfs/get.rs
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ impl Stream for UnixfsGet {

written += n;
}

yield UnixfsStatus::ProgressStatus { written, total_size };

},
Expand All @@ -215,7 +215,7 @@ impl Stream for UnixfsGet {
_ = local_only;
_ = timeout;
_ = dest;
yield UnixfsStatus::FailedStatus { written: 0, total_size: None, error: Some(anyhow::anyhow!("unimplemented")) };
yield UnixfsStatus::FailedStatus { written: 0, total_size: None, error: anyhow::anyhow!("unimplemented") };
};

self.stream = Some(stream.boxed());
Expand Down

0 comments on commit 538c834

Please sign in to comment.