summaryrefslogtreecommitdiff
path: root/cli/file_fetcher.rs
diff options
context:
space:
mode:
authorLeo Kettmeir <crowlkats@toaxl.com>2024-10-17 12:05:38 -0700
committerGitHub <noreply@github.com>2024-10-17 19:05:38 +0000
commiteca83fc9b45ab1e5a73bd7b13b05ee42ab1a4dcc (patch)
treeac032ce2c861bbbdbb31fa829be4d53b34be00f1 /cli/file_fetcher.rs
parent40b4b9aaa318dcbd1e639542b7cb18df6d96db68 (diff)
refactor(ext/web): use concrete error types (#26185)
Diffstat (limited to 'cli/file_fetcher.rs')
-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())]);