summaryrefslogtreecommitdiff
path: root/runtime/web_worker.rs
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/web_worker.rs')
-rw-r--r--runtime/web_worker.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/web_worker.rs b/runtime/web_worker.rs
index 079e772b6..d95b28410 100644
--- a/runtime/web_worker.rs
+++ b/runtime/web_worker.rs
@@ -98,7 +98,7 @@ impl Serialize for WorkerControlEvent {
let value = match error.downcast_ref::<JsError>() {
Some(js_error) => {
let frame = js_error.frames.iter().find(|f| match &f.file_name {
- Some(s) => !s.trim_start_matches('[').starts_with("deno:"),
+ Some(s) => !s.trim_start_matches('[').starts_with("internal:"),
None => false,
});
json!({