summaryrefslogtreecommitdiff
path: root/runtime/ops/web_worker
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 /runtime/ops/web_worker
parent40b4b9aaa318dcbd1e639542b7cb18df6d96db68 (diff)
refactor(ext/web): use concrete error types (#26185)
Diffstat (limited to 'runtime/ops/web_worker')
-rw-r--r--runtime/ops/web_worker/sync_fetch.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/ops/web_worker/sync_fetch.rs b/runtime/ops/web_worker/sync_fetch.rs
index cdb151a86..87fc55840 100644
--- a/runtime/ops/web_worker/sync_fetch.rs
+++ b/runtime/ops/web_worker/sync_fetch.rs
@@ -134,7 +134,7 @@ pub fn op_worker_sync_fetch(
let mime_type = mime_type_essence(&blob.media_type);
- let body = blob.read_all().await?;
+ let body = blob.read_all().await;
(Bytes::from(body), Some(mime_type), script)
}