summaryrefslogtreecommitdiff
path: root/cli
diff options
context:
space:
mode:
Diffstat (limited to 'cli')
-rw-r--r--cli/file_fetcher.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/file_fetcher.rs b/cli/file_fetcher.rs
index 69daf1495..e92aca542 100644
--- a/cli/file_fetcher.rs
+++ b/cli/file_fetcher.rs
@@ -333,7 +333,7 @@ impl FileFetcher {
)
})?;
- let bytes = blob.read_all().await?;
+ let bytes = blob.read_all().await;
let headers =
HashMap::from([("content-type".to_string(), blob.media_type.clone())]);