diff options
Diffstat (limited to 'runtime/ops/web_worker/sync_fetch.rs')
-rw-r--r-- | runtime/ops/web_worker/sync_fetch.rs | 2 |
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 f96a01a5a..9d356f5ee 100644 --- a/runtime/ops/web_worker/sync_fetch.rs +++ b/runtime/ops/web_worker/sync_fetch.rs @@ -107,7 +107,7 @@ pub fn op_worker_sync_fetch( } "blob" => { let blob = - blob_store.get_object_url(script_url)?.ok_or_else(|| { + blob_store.get_object_url(script_url).ok_or_else(|| { type_error("Blob for the given URL not found.") })?; |